You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi,
I would like to know if there is a simple way to make an infinite loop.
The "RetryUntilSuccesful" node has a limit num_attempts.
It is possible to make possible by changing retry_node.cpp (line 55) :
while (try_index_ < max_attempts_)
into :
while (try_index_ < max_attempts_ || max_attempts_==-1)
And set max_attempts_ as an int.
Or should I create my own DecoratorNode.
The text was updated successfully, but these errors were encountered:
Hi,
I would like to know if there is a simple way to make an infinite loop.
The "RetryUntilSuccesful" node has a limit num_attempts.
It is possible to make possible by changing retry_node.cpp (line 55) :
while (try_index_ < max_attempts_)
into :
while (try_index_ < max_attempts_ || max_attempts_==-1)
And set max_attempts_ as an int.
Or should I create my own DecoratorNode.
The text was updated successfully, but these errors were encountered: