Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.

In the implementation we had just a single value to store the escape hatch, but since it is updatable by governance, and are not always used with exactly the value that it currently has, we are back into the good ol' case of snapshots.
Essentially, when there is only one value for the escape hatch to look at, the consumers (which might depend on specific timing) could retroactively have their logic altered.
Consumers:
By being able to alter "all" view of the escape hatch it was possible to make failure cases as these:
Another point of interest, not for the rollup, but for the candidates, is that the escape hatch could keep selecting them for duty, without being able to actually propose. So the escape hatch must also take a look at the rollup to see if it is currently the active hatch.
Solving the problems are as mentioned simple, use a snapshot, and then read historical values. When updating the escape hatch we will then do it for the NEXT epoch, since it could otherwise happen after a checkpoint was already proposed in the same L1 block.
In the case where the update happens during an open hatch, we allow the proposer to do nothing without getting punished, but if he does propose thing he must fulfill them.