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
The test in upstairs/src/upstairs.rsreconcile_not_ready() tries to verify connect_region_set() will return false when there are only 2/3 downstairs in the proper state. The call to connect_region_set() actually fails because the upstairs is not in the proper state, so the test is not testing what it thinks it is.
The fix is just to move the upstairs to the proper state:
let (_rx, done) = BlockOpWaiter::pair();
up.state = UpstairsState::GoActive(done);
Before the call to connect_region_set()
The text was updated successfully, but these errors were encountered:
The test in
upstairs/src/upstairs.rs
reconcile_not_ready()
tries to verifyconnect_region_set()
will return false when there are only 2/3 downstairs in the proper state. The call toconnect_region_set()
actually fails because the upstairs is not in the proper state, so the test is not testing what it thinks it is.The fix is just to move the upstairs to the proper state:
Before the call to
connect_region_set()
The text was updated successfully, but these errors were encountered: