Skip to content

Commit 38852a5

Browse files
committed
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 ad3f636 commit 38852a5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

queue/abstract/driver/utubettl.lua

+1-1
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)