Skip to content

Commit

Permalink
utubettl: fix a typo
Browse files Browse the repository at this point in the history
Same as fixing a typo in e355387 ("fix fifottl_fiber_iteration error
handling") for fifottl.

Required to pass integration testing of PR tarantool/tarantool#9604.
  • Loading branch information
nshy authored and LeonidVas committed Jan 29, 2024
1 parent a563b16 commit 67738f1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion queue/abstract/driver/utubettl.lua
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ local function utubettl_fiber(self)
if box.info.ro == false then
local stat, err = pcall(utubettl_fiber_iteration, self, processed)

if not stat and not err.code == box.error.READONLY then
if not stat and not (err.code == box.error.READONLY) then
log.error("error catched: %s", tostring(err))
log.error("exiting fiber '%s'", fiber.name())
return 1
Expand Down

0 comments on commit 67738f1

Please sign in to comment.