Skip to content

Commit 1e4bfc6

Browse files
tpajenkamp-dspacepmai
authored andcommitted
Fix protobuf message tags in TrafficCommandUpdate
Signed-off-by: Thomas Pajenkamp <tpajenkamp@dspace.de>
1 parent 7bb5476 commit 1e4bfc6

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

osi_trafficcommandupdate.proto

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ message TrafficCommandUpdate
4949
// \note If more than one action id is supplied it means that
5050
// multiple actions are regarded as dismissed.
5151
//
52-
repeated DismissedAction dismissed_action;
52+
repeated DismissedAction dismissed_action = 4;
5353

5454
//
5555
// \brief Action which a traffic participant dismisses.
@@ -63,12 +63,12 @@ message TrafficCommandUpdate
6363
// \c TrafficAction::ActionHeader::action_id of a prior sent \c TrafficCommand and must correspond
6464
// to the same traffic participant.
6565
//
66-
optional Identifier dismissed_action_id = 4;
66+
optional Identifier dismissed_action_id = 1;
6767

6868
// Information about the reason of failure.
6969
//
7070
// \note This is just a custom, informal string without a standardized meaning.
7171
//
72-
optional string failure_reason = 5;
72+
optional string failure_reason = 2;
7373
}
7474
}

0 commit comments

Comments
 (0)