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 95a3cea commit 5c1a071Copy full SHA for 5c1a071
src/main/java/com/cisco/trex/stateless/TRexTransport.java
@@ -35,7 +35,7 @@ public class TRexTransport {
35
public TRexTransport(String host, String port, int timeout, IDataCompressor dataCompressor) {
36
this.host = host;
37
this.port = port;
38
- this.zmqSocket = zmqCtx.socket(ZMQ.REQ);
+ this.zmqSocket = zmqCtx.socket(SocketType.REQ);
39
int actualTimeout = timeout <= 0 ? DEFAULT_TIMEOUT : timeout;
40
zmqSocket.setReceiveTimeOut(actualTimeout);
41
zmqSocket.setSendTimeOut(actualTimeout);
0 commit comments