Skip to content

Commit

Permalink
Fix timeout value in std output
Browse files Browse the repository at this point in the history
We were using the wrong timeout in the terminal output there.
  • Loading branch information
fmauch authored Oct 22, 2024
1 parent d55def1 commit 990ea72
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ def service_caller(
if future.result() is None:
node.get_logger().warning(
f"Failed getting a result from calling {fully_qualified_service_name} in "
f"{service_timeout}. (Attempt {attempt+1} of {max_attempts}.)"
f"{call_timeout}. (Attempt {attempt+1} of {max_attempts}.)"
)
else:
return future.result()
Expand Down

0 comments on commit 990ea72

Please sign in to comment.