Skip to content

Commit

Permalink
increase concurrent container sleep rate
Browse files Browse the repository at this point in the history
  • Loading branch information
benmaidel authored and fmessmer committed Jun 25, 2024
1 parent 69b3ae3 commit 22604d5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion flexbe_core/src/flexbe_core/core/concurrency_container.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ def __init__(self, conditions=dict(), *args, **kwargs):
super(ConcurrencyContainer, self).__init__(*args, **kwargs)
self._conditions = conditions
self._returned_outcomes = dict()
self._rate = rospy.Rate(100)
self._rate = rospy.Rate(200)

def sleep(self):
self.wait(seconds=self.sleep_duration)
Expand Down

0 comments on commit 22604d5

Please sign in to comment.