You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently action listener and message format tests pass in a timeout argument to the action listener server socket to break the action listener's execution once the test is complete. socket.setSoTimeout(timeout);
The main script sets this timeout as 0, which indicates a infinite timeout for the server socket unless explicitly closed, this might cause an issue with the connection profile builder's handshake timeout, which is set to 1 hour, since the server socket timeout wraps around this.
During tests, upon server socket timeout, a SocketTimeoutException is thrown by the action listener which is then logged in the terminal as STANDARD_ERROR. While this behavior is expected, this log should not be printed.
The text was updated successfully, but these errors were encountered:
Currently action listener and message format tests pass in a timeout argument to the action listener server socket to break the action listener's execution once the test is complete.
socket.setSoTimeout(timeout);
The main script sets this timeout as 0, which indicates a infinite timeout for the server socket unless explicitly closed, this might cause an issue with the connection profile builder's handshake timeout, which is set to 1 hour, since the server socket timeout wraps around this.
During tests, upon server socket timeout, a SocketTimeoutException is thrown by the action listener which is then logged in the terminal as STANDARD_ERROR. While this behavior is expected, this log should not be printed.
The text was updated successfully, but these errors were encountered: