Skip to content

Commit

Permalink
Fixing permissions to beta
Browse files Browse the repository at this point in the history
  • Loading branch information
devinmatte committed Aug 4, 2024
1 parent 34f9d27 commit 7d4f0cb
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion ingestor/.chalice/policy-landing-data.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
"Effect": "Allow",
"Resource": [
"arn:aws:cloudfront::473352343756:distribution/EH3F0Z8TUZVCQ",
"arn:aws:cloudfront::473352343756:distribution/ENTCATGUNQIQ"
"arn:aws:cloudfront::473352343756:distribution/E17EZQSPQV9OWI"
]
}
]
Expand Down
2 changes: 1 addition & 1 deletion ingestor/chalicelib/ridership/gtfs.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,6 @@ def get_routes_by_line_id() -> Dict[str, Route]:
)
feed = archive.get_latest_feed()
feed.use_compact_only()
feed.download_from_s3()
feed.download_or_build()
session = feed.create_sqlite_session(compact=True)
return bucket_by(session.query(Route).all(), lambda r: r.line_id)
4 changes: 2 additions & 2 deletions ingestor/chalicelib/trip_metrics/backfill.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@

from .ingest import ingest_trip_metrics, get_date_ranges

START_DATE = date(2024, 5, 1)
END_DATE = date(2024, 7, 31)
START_DATE = date(2024, 6, 1)
END_DATE = date(2024, 8, 4)
MAX_RANGE_SIZE = 90

if __name__ == "__main__":
Expand Down

0 comments on commit 7d4f0cb

Please sign in to comment.