We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9174dce commit 416b40aCopy full SHA for 416b40a
include/behaviortree_cpp/loggers/groot2_protocol.h
@@ -107,7 +107,6 @@ struct RequestHeader
107
bool operator==(const RequestHeader& other) const
108
{
109
return type == other.type &&
110
- protocol == other.protocol &&
111
unique_id == other.unique_id;
112
}
113
bool operator!=(const RequestHeader& other) const
src/loggers/groot2_publisher.cpp
@@ -269,6 +269,7 @@ void Groot2Publisher::serverLoop()
269
270
Monitor::ReplyHeader reply_header;
271
reply_header.request = request_header;
272
+ reply_header.request.protocol = Monitor::kProtocolID;
273
reply_header.tree_id = serialized_uuid;
274
275
zmq::multipart_t reply_msg;
0 commit comments