Skip to content

Commit

Permalink
refactor(ReferenceTableDiscovery.java): Updated trip service id key
Browse files Browse the repository at this point in the history
key now includes reference to schedule exceptions matching trip service_id references
  • Loading branch information
br648 committed Nov 16, 2023
1 parent 0a7763f commit 8114537
Showing 1 changed file with 8 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,14 @@ public class ReferenceTableDiscovery {
public enum ReferenceTableKey {

TRIP_SERVICE_ID_KEY(
String.join(REF_TABLE_SEPARATOR, Table.TRIPS.name, SERVICE_ID, Table.CALENDAR.name, Table.CALENDAR_DATES.name)
String.join(
REF_TABLE_SEPARATOR,
Table.TRIPS.name,
SERVICE_ID,
Table.CALENDAR.name,
Table.CALENDAR_DATES.name,
Table.SCHEDULE_EXCEPTIONS.name
)
);

private final String value;
Expand Down

0 comments on commit 8114537

Please sign in to comment.