Skip to content

Commit

Permalink
Merge pull request #12 from ibi-group/make-shared-stop-errors-errors
Browse files Browse the repository at this point in the history
increase error priority of Shared Stops Errors
  • Loading branch information
miles-grant-ibigroup authored Dec 19, 2024
2 parents a8a376c + 7259153 commit 07b1cc8
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ public enum NewGTFSErrorType {
// Shared Stops-specifc errors.
MULTIPLE_SHARED_STOPS_GROUPS(Priority.HIGH, "A GTFS stop belongs to more than one shared-stop group, or belongs to the same shared-stop group twice."),
SHARED_STOP_GROUP_MULTIPLE_PRIMARY_STOPS(Priority.HIGH, "A shared-stop group has multiple primary stops."),
SHARED_STOP_GROUP_ENTITY_DOES_NOT_EXIST(Priority.MEDIUM, "The stop referenced by a shared-stop does not exist in the feed it was said to exist in."),
SHARED_STOP_GROUP_ENTITY_DOES_NOT_EXIST(Priority.HIGH, "The stop referenced by a shared-stop does not exist in the feed it was said to exist in."),

// Unknown errors.
OTHER(Priority.LOW, "Other errors.");
Expand Down

0 comments on commit 07b1cc8

Please sign in to comment.