From 0798773bcb43a3c0693b79f69f03556f077774a7 Mon Sep 17 00:00:00 2001 From: Brendan Chen Date: Tue, 18 Nov 2025 19:07:44 -0800 Subject: [PATCH] Replicate the change in the in-memory version --- .../shuttle/eta/InMemorySelfUpdatingETARepository.ts | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/repositories/shuttle/eta/InMemorySelfUpdatingETARepository.ts b/src/repositories/shuttle/eta/InMemorySelfUpdatingETARepository.ts index 89212ab..602e8ed 100644 --- a/src/repositories/shuttle/eta/InMemorySelfUpdatingETARepository.ts +++ b/src/repositories/shuttle/eta/InMemorySelfUpdatingETARepository.ts @@ -160,11 +160,6 @@ export class InMemorySelfUpdatingETARepository extends BaseInMemoryETARepository lastArrival, currentArrival, }: WillArriveAtStopPayload): Promise { - const etas = await this.getEtasForShuttleId(currentArrival.shuttleId); - for (const eta of etas) { - await this.removeEtaIfExists(eta.shuttleId, eta.stopId); - } - if (lastArrival) { // disallow cases where this gets triggered multiple times if (lastArrival.stopId === currentArrival.stopId) return;