jepsen-io / jepsen

A framework for distributed systems verification, with fault injection
6.84k stars 718 forks source link

Fix catch with throw+ instead of throw #599

Closed wb14123 closed 3 weeks ago

wb14123 commented 1 month ago

The catch is in try+, which can catch other things than throwable. So use throw+ to re-throw the exceptions.

wb14123 commented 3 weeks ago

Hey @aphyr does this PR look good to you?

aphyr commented 3 weeks ago

Ah, yes, thank you!