Skip to content

Commit 7c14027

Browse files
hliberackichristophebedard-apexai
authored andcommitted
Replace depracted spin_until_future_complete with spin_until_complete
Signed-off-by: Hubert Liberacki <[email protected]>
1 parent 513bd86 commit 7c14027

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test_tracetools/src/test_lifecycle_client.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -268,7 +268,7 @@ int main(int argc, char ** argv)
268268

269269
std::shared_future<void> script = std::async(
270270
std::launch::async, std::bind(cycle_through_states, client_node));
271-
exec.spin_until_future_complete(script);
271+
exec.spin_until_complete(script);
272272

273273
rclcpp::shutdown();
274274

0 commit comments

Comments
 (0)