From 108f1096d18cf0b52986fb82d1b16a615a439a95 Mon Sep 17 00:00:00 2001 From: roggervalf Date: Sat, 23 Nov 2024 14:33:28 -0500 Subject: [PATCH] chore: remove debug statements --- src/commands/getJobSchedulerTemplate-2.lua | 6 ------ 1 file changed, 6 deletions(-) diff --git a/src/commands/getJobSchedulerTemplate-2.lua b/src/commands/getJobSchedulerTemplate-2.lua index 40bdf84345..e84092d76a 100644 --- a/src/commands/getJobSchedulerTemplate-2.lua +++ b/src/commands/getJobSchedulerTemplate-2.lua @@ -11,15 +11,9 @@ local rcall = redis.call local millis = rcall("ZSCORE", KEYS[1], ARGV[1]) -rcall('SET', 'DEBUG1', 'here') - if millis ~= false then - rcall('SET', 'DEBUG', millis) local templateJobId = "repeat:" .. ARGV[1] .. ":" .. millis - rcall('SET', 'DEBUG2', templateJobId) - rcall('SET', 'DEBUG3', KEYS[2] .. templateJobId) - return {rcall("HGETALL", KEYS[2] .. templateJobId), templateJobId} -- get job data end