Skip to content

Commit ef43eb4

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 b695e4e commit ef43eb4

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
@@ -265,7 +265,7 @@ int main(int argc, char ** argv)
265265

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

270270
rclcpp::shutdown();
271271

0 commit comments

Comments
 (0)