We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d4d8ae1 commit c2ea048Copy full SHA for c2ea048
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