-
Notifications
You must be signed in to change notification settings - Fork 18
Behavior optimizations #692
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
8297610
74f526b
0ae43a2
ff51889
72d72f9
75b7aa3
9a2311d
14d8817
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -60,7 +60,7 @@ def __init__(self): | |
|
|
||
| self.set_state_defaults() | ||
|
|
||
| self.tf_buffer = Buffer(self.node) | ||
| self.tf_buffer = Buffer(node=self.node) | ||
|
||
|
|
||
| self.run_spin_in_thread() | ||
| self.try_to_establish_connection() | ||
|
|
||
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -20,7 +20,7 @@ class RobotFilter(Node): | |||||
| def __init__(self): | ||||||
| super().__init__("bitbots_robot_filter") | ||||||
|
|
||||||
| self.tf_buffer = Buffer(self, Duration(seconds=10.0)) | ||||||
| self.tf_buffer = Buffer(Duration(seconds=10.0), self) | ||||||
|
||||||
| self.tf_buffer = Buffer(Duration(seconds=10.0), self) | |
| self.tf_buffer = Buffer(cache_time=Duration(seconds=10.0), node=self) |
Uh oh!
There was an error while loading. Please reload this page.