You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If the trip pattern ui sends a request to update a trip pattern to the server and gets back a 400 (or anything other than a 200), it should fail rather than continuing to let the user edit the trip pattern.
In #242, the backend would choke on certain updates, and the frontend would let the user continue to edit the feed, blissfully unaware that none of their edits were being saved.
The backend enforces a strict one-update-at-a-time policy in TripPattern#reconcilePatternStops, which will explode if more than one thing changes at once - so if an update has previously failed, all bets are off.
The text was updated successfully, but these errors were encountered:
If the trip pattern ui sends a request to update a trip pattern to the server and gets back a 400 (or anything other than a 200), it should fail rather than continuing to let the user edit the trip pattern.
In #242, the backend would choke on certain updates, and the frontend would let the user continue to edit the feed, blissfully unaware that none of their edits were being saved.
The backend enforces a strict one-update-at-a-time policy in TripPattern#reconcilePatternStops, which will explode if more than one thing changes at once - so if an update has previously failed, all bets are off.
The text was updated successfully, but these errors were encountered: