Skip to content

Commit 0a5686e

Browse files
fix #685 (timeout in ZMP publisher)
1 parent a28df0f commit 0a5686e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/loggers/groot2_publisher.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ struct Groot2Publisher::PImpl
6565

6666
int timeout_ms = 1000;
6767
server.set(zmq::sockopt::sndtimeo, timeout_ms);
68-
publisher.set(zmq::sockopt::rcvtimeo, timeout_rcv);
68+
publisher.set(zmq::sockopt::sndtimeo, timeout_ms);
6969
}
7070

7171
unsigned server_port = 0;

0 commit comments

Comments
 (0)