jepsen-io / jepsen

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

Fixed error handling in jepsen.net/fast #598

Closed as51340 closed 1 month ago

as51340 commented 1 month ago

net/sched/sch_api.c in the Linux kernel changed the error message in 2017 with this commit: https://github.com/torvalds/linux/commit/09215598119ebf89bd204ca4ad8b7059266053d9. Hence, Jepsen's search for "No such file or directory" doesn't hold anymore. This change fixes this.

Relevant hunk from the commit: https://github.com/torvalds/linux/commit/09215598119ebf89bd204ca4ad8b7059266053d9#diff-ca8fc00def75b40f1f1bc2fb38e3949e5db262b93ceceb571f9138b98e3cc760R1323

aphyr commented 1 month ago

Heck yeah, good work!