Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: tarantool/queue
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 38852a5060db9381e49c41a66af51ce62aa85b68
Choose a base ref
..
head repository: tarantool/queue
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 47378d27904050fe81bdf01c6f19fdcddd5ee094
Choose a head ref
Showing with 3 additions and 1 deletion.
  1. +3 −1 queue/abstract/queue_state.lua
4 changes: 3 additions & 1 deletion queue/abstract/queue_state.lua
Original file line number Diff line number Diff line change
@@ -86,7 +86,9 @@ local function create_state_fiber(on_state_change_cb)
end
end
-- Handle server shutdown.
if not pcall(fiber.testcancel) then break end
if not pcall(fiber.testcancel) then
break
end
end
end)