Skip to content

Commit 67738f1

Browse files
nshyLeonidVas
authored andcommitted
utubettl: fix a typo
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.
1 parent a563b16 commit 67738f1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

queue/abstract/driver/utubettl.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ local function utubettl_fiber(self)
169169
if box.info.ro == false then
170170
local stat, err = pcall(utubettl_fiber_iteration, self, processed)
171171

172-
if not stat and not err.code == box.error.READONLY then
172+
if not stat and not (err.code == box.error.READONLY) then
173173
log.error("error catched: %s", tostring(err))
174174
log.error("exiting fiber '%s'", fiber.name())
175175
return 1

0 commit comments

Comments
 (0)