From 1cf85a467f52cb7004e24e06946b9f368c31538d Mon Sep 17 00:00:00 2001 From: Devin Matte Date: Tue, 3 Sep 2024 20:58:09 -0400 Subject: [PATCH] Use compact --- mbta-performance/chalicelib/gtfs.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mbta-performance/chalicelib/gtfs.py b/mbta-performance/chalicelib/gtfs.py index 12c81d4..601285c 100644 --- a/mbta-performance/chalicelib/gtfs.py +++ b/mbta-performance/chalicelib/gtfs.py @@ -21,7 +21,7 @@ def fetch_stop_times_from_gtfs(trip_ids: Iterable[str], service_date: date) -> p ) feed = mbta_gtfs.get_feed_for_date(service_date) feed.download_or_build() - session = feed.create_sqlite_session() + session = feed.create_sqlite_session(compact=True) exists_remotely = feed.exists_remotely() gtfs_stops = []