From 243d69fec1c79786cd6e91e3362526c58a22a2bb Mon Sep 17 00:00:00 2001 From: Kory Draughn Date: Sun, 10 Nov 2024 12:03:57 -0500 Subject: [PATCH] squash w/ delay rule claim API updates. Fixed keyword usage in delay server. --- server/delay_server/src/irodsDelayServer.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/server/delay_server/src/irodsDelayServer.cpp b/server/delay_server/src/irodsDelayServer.cpp index d2371bf5a6..a521e1697c 100644 --- a/server/delay_server/src/irodsDelayServer.cpp +++ b/server/delay_server/src/irodsDelayServer.cpp @@ -368,9 +368,9 @@ namespace } // Clear the delay server claim information so the rule can be processed in the future. - addKeyVal(&rule_exec_mod_inp.condInput, RULE_DELAY_SERVER_HOST_KW, ""); - addKeyVal(&rule_exec_mod_inp.condInput, RULE_DELAY_SERVER_PID_KW, ""); - addKeyVal(&rule_exec_mod_inp.condInput, RULE_DELAY_SERVER_CLAIMED_TIME_KW, ""); + addKeyVal(&rule_exec_mod_inp.condInput, RULE_CLAIM_HOST_KW, ""); + addKeyVal(&rule_exec_mod_inp.condInput, RULE_CLAIM_HOST_PID_KW, ""); + addKeyVal(&rule_exec_mod_inp.condInput, RULE_CLAIM_TIME_KW, ""); addKeyVal(&rule_exec_mod_inp.condInput, RULE_LAST_EXE_TIME_KW, current_time); addKeyVal(&rule_exec_mod_inp.condInput, RULE_EXE_TIME_KW, next_time);