Skip to content

Commit

Permalink
squash w/ [7229] Redesign startup/shutdown process.
Browse files Browse the repository at this point in the history
  • Loading branch information
korydraughn committed Nov 29, 2024
1 parent d3139ca commit 052aff7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions server/delay_server/src/irodsDelayServer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -482,7 +482,7 @@ namespace
// r_rule_exec.exe_context for migrated rules. If the rule has not been migrated,
// then the context information must be stored in an REI file.
if (kvp.contains(RULE_EXECUTION_CONTEXT_KW) && !kvp[RULE_EXECUTION_CONTEXT_KW].value().empty()) {
rodsLog(LOG_DEBUG, "Inflating rule execution context from JSON string [rule_id=%s] ...", _inp.ruleExecId);
log_ds::debug("Inflating rule execution context from JSON string [rule_id={}] ...", _inp.ruleExecId);

rei = irods::to_rule_execution_info(kvp[RULE_EXECUTION_CONTEXT_KW].value());
rei_ptr = &rei;
Expand All @@ -495,7 +495,7 @@ namespace
}
}
else {
rodsLog(LOG_DEBUG, "Inflating rule execution context from REI file [rule_id=%s] ...", _inp.ruleExecId);
log_ds::debug("Inflating rule execution context from REI file [rule_id={}] ...", _inp.ruleExecId);

// Rules are only migrated into the catalog if they do not use session variables.
// This is because session variables are considered obsolete and will not be available
Expand Down

0 comments on commit 052aff7

Please sign in to comment.