We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6c958bd commit 17a9c35Copy full SHA for 17a9c35
src/decorators/retry_node.cpp
@@ -67,6 +67,8 @@ NodeStatus RetryNode::tick()
67
68
case NodeStatus::FAILURE: {
69
try_count_++;
70
+ // Refresh max_attempts_ in case it changed in one of the child nodes
71
+ getInput(NUM_ATTEMPTS, max_attempts_);
72
do_loop = try_count_ < max_attempts_ || max_attempts_ == -1;
73
74
resetChild();
0 commit comments