Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
GEODE-9536: Disable client version test on Windows (#6971)
PROBLEM When a server receives a connection request with an unrecognized client version, it sends an informative reply and immediately closes the socket. In this situation, the client wants to throw a `ServerRefusedConnectionException` with a message that includes the server's informative reply. On Windows, when the client attempts to read the server's reply, the socket throws a `SocketException` with the message "Connection reset". As a result, the caller never receives the informative `ServerRefusedConnectionException`. SOLUTION Disable this test on Windows until the underlying issue is fixed. See https://issues.apache.org/jira/browse/GEODE-9698 NOTE This prepares for an upcoming PR to run all distributed tests (except explicitly ignored ones like these) on Windows.
- Loading branch information