Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
2
210910794
Manage
Activity
Members
Labels
Plan
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Package Registry
Operate
Terraform modules
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Summer2021
210910794
Commits
e0a78c69
Commit
e0a78c69
authored
5 years ago
by
Matthew Hansen
Committed by
Carl Delsey
5 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Fix wait_for_bt_active loop
parent
8e25c41f
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
nav2_system_tests/src/system/test_system_node.py
+4
-4
4 additions, 4 deletions
nav2_system_tests/src/system/test_system_node.py
with
4 additions
and
4 deletions
nav2_system_tests/src/system/test_system_node.py
+
4
−
4
View file @
e0a78c69
...
...
@@ -97,16 +97,16 @@ class NavTester(Node):
# wait for the bt_navigator to be in active state
state_client
=
self
.
create_client
(
GetState
,
'
/bt_navigator/get_state
'
)
while
not
state_client
.
wait_for_service
(
timeout_sec
=
1.0
):
print
(
'
bt_navigator/get_state service not available, waiting
again
...
'
)
print
(
'
/
bt_navigator/get_state service not available, waiting...
'
)
req
=
GetState
.
Request
()
# empty request
future
=
state_client
.
call_async
(
req
)
state
=
'
Unknown
'
state
=
'
UNKNOWN
'
while
(
state
!=
'
active
'
):
self
.
get_logger
().
info
(
'
Getting bt_navigator state...
'
)
future
=
state_client
.
call_async
(
req
)
rclpy
.
spin_until_future_complete
(
self
,
future
)
if
future
.
result
()
is
not
None
:
self
.
get_logger
().
info
(
'
Result of get_state: %s
'
%
future
.
result
().
current_state
.
label
)
state
=
future
.
result
().
current_state
.
label
self
.
get_logger
().
info
(
'
Result of get_state: %s
'
%
state
)
else
:
self
.
get_logger
().
error
(
'
Exception while calling service: %r
'
%
future
.
exception
())
time
.
sleep
(
5
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment