File tree Expand file tree Collapse file tree 2 files changed +6
-4
lines changed Expand file tree Collapse file tree 2 files changed +6
-4
lines changed Original file line number Diff line number Diff line change 6
6
types : [opened, reopened, synchronize]
7
7
jobs :
8
8
build_and_test :
9
- runs-on : ubuntu-22 .04
9
+ runs-on : ubuntu-24 .04
10
10
steps :
11
- - uses : ros-tooling/setup-ros@v0.3
11
+ - uses : ros-tooling/setup-ros@v0.7
12
12
with :
13
13
required-ros-distributions : rolling
14
- - uses : ros-tooling/action-ros-ci@v0.2
14
+ - uses : ros-tooling/action-ros-ci@v0.4
15
15
with :
16
16
target-ros2-distro : rolling
Original file line number Diff line number Diff line change @@ -119,7 +119,9 @@ ServerNode::handle_get_results_request(
119
119
{
120
120
std::lock_guard guard{pub_gid_to_collected_info_map_mutex_};
121
121
auto it = pub_gid_to_collected_info_map_.find (req->publisher_gid );
122
- if (it == pub_gid_to_collected_info_map_.end () && pub_gid_to_collected_info_map_.size () == 1uLL) {
122
+ if (it == pub_gid_to_collected_info_map_.end () &&
123
+ pub_gid_to_collected_info_map_.size () == 1uLL)
124
+ {
123
125
// workaround for cyclonedds bug, only works one test a time
124
126
// https://github.com/ros2/rmw_cyclonedds/issues/377
125
127
// TODO(ivanpauno): Do something else
You can’t perform that action at this time.
0 commit comments