Skip to content

Commit

Permalink
Fix a bug in PlayerImpl::wait_for_sent_service_requests_to_finish
Browse files Browse the repository at this point in the history
Signed-off-by: Barry Xu <barry.xu@sony.com>
  • Loading branch information
Barry-Xu-2018 committed Apr 13, 2024
1 parent 87526a7 commit e95a51e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion rosbag2_transport/src/rosbag2_transport/player.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -815,7 +815,8 @@ bool PlayerImpl::wait_for_sent_service_requests_to_finish(
is_requests_complete = false;
}
} else {
player_service_client_manager_->wait_for_sent_requests_to_finish(nullptr, timeout);
is_requests_complete =
player_service_client_manager_->wait_for_sent_requests_to_finish(nullptr, timeout);
}
return is_requests_complete;
}
Expand Down

0 comments on commit e95a51e

Please sign in to comment.