In class 'SigV4WebSocketChannelizer' on line 103 you have mentioned following line:
private static final int HANDSHAKE_TIMEOUT_MILLIS = 1500;
On line 188, you mention this 'if the handshake takes longer 15 seconds' where you are using 1500 milis. This is in fact 1.5 seconds and not 15 seconds. I am getting timeout issues because of this.
Hello,
In class 'SigV4WebSocketChannelizer' on line 103 you have mentioned following line: private static final int HANDSHAKE_TIMEOUT_MILLIS = 1500;
On line 188, you mention this 'if the handshake takes longer 15 seconds' where you are using 1500 milis. This is in fact 1.5 seconds and not 15 seconds. I am getting timeout issues because of this.