From a2f76703eaff8dbb85a280ccfd965ee16a33144f Mon Sep 17 00:00:00 2001 From: Brendan Chen Date: Tue, 18 Nov 2025 19:07:06 -0800 Subject: [PATCH] Remove behavior of ETA clearing when shuttle is approaching stop --- .../shuttle/eta/RedisSelfUpdatingETARepository.ts | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/repositories/shuttle/eta/RedisSelfUpdatingETARepository.ts b/src/repositories/shuttle/eta/RedisSelfUpdatingETARepository.ts index 76e723b..f030856 100644 --- a/src/repositories/shuttle/eta/RedisSelfUpdatingETARepository.ts +++ b/src/repositories/shuttle/eta/RedisSelfUpdatingETARepository.ts @@ -182,11 +182,6 @@ export class RedisSelfUpdatingETARepository extends BaseRedisETARepository imple lastArrival, currentArrival, }: WillArriveAtStopPayload) { - const etas = await this.getEtasForShuttleId(currentArrival.shuttleId); - for (const eta of etas) { - await this.removeEtaIfExists(eta.shuttleId, eta.stopId); - } - // only update time traveled if last arrival exists if (lastArrival) { // disallow cases where this gets triggered multiple times