Skip to content

Commit c4bf9fa

Browse files
authored
fix(move-to-finished): return correct delayUntil (#1643)
1 parent a444934 commit c4bf9fa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/commands/moveToFinished-12.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -208,7 +208,7 @@ if rcall("EXISTS", jobIdKey) == 1 then -- // Make sure job exists
208208
if (nextTimestamp ~= nil) then
209209
-- The result is guaranteed to be positive, since the
210210
-- ZRANGEBYSCORE command would have return a job otherwise.
211-
return {0, 0, 0, nextTimestamp - timestamp}
211+
return {0, 0, 0, nextTimestamp}
212212
end
213213
end
214214

0 commit comments

Comments
 (0)