From 4096c0ce446ff1165b8b2bd8e9e22c34bbafb7b3 Mon Sep 17 00:00:00 2001 From: Brendan Chen Date: Tue, 11 Nov 2025 21:05:43 -0800 Subject: [PATCH] Add call to startListeningForUpdates() --- src/entities/InterchangeSystem.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/entities/InterchangeSystem.ts b/src/entities/InterchangeSystem.ts index f9877b9..662cfe8 100644 --- a/src/entities/InterchangeSystem.ts +++ b/src/entities/InterchangeSystem.ts @@ -111,6 +111,7 @@ export class InterchangeSystem { let etaRepository: BaseRedisETARepository; if (args.useSelfUpdatingEtas) { etaRepository = new RedisSelfUpdatingETARepository(shuttleRepository); + (etaRepository as RedisSelfUpdatingETARepository).startListeningForUpdates(); } else { etaRepository = new RedisExternalSourceETARepository(); }