-
Notifications
You must be signed in to change notification settings - Fork 53
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
We are going to finish all client (non-system) fibers in the process of Tarantool shutdown. First we cancel them and then wait for their finishing. So if the client fibers are not finished Tarantool shutdown is never finished too. Currently some of queue fibers can not be finished and we got hang on integration testing of PR [1]. Let's fix it. In `queue_state.lua` the only error that can aries on `box.ctl.wait_rw` or `box.ctl.wait_ro` is `FiberIsCancelled` so we can just drop pcall. In `utubettl.lua` we just need to fix a typo. Just as already done for fifottl in e355387 ("fix fifottl_fiber_iteration error handling") [1] PR with client fibers finishing on shutdown. tarantool/tarantool#9604
- Loading branch information
Showing
2 changed files
with
15 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters