Commit 7dd6143
authored
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.1 parent e9320c5 commit 7dd6143
File tree
1 file changed
+6
-0
lines changed- geode-core/src/distributedTest/java/org/apache/geode/internal/cache/tier/sockets
1 file changed
+6
-0
lines changedLines changed: 6 additions & 0 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
24 | 24 | | |
25 | 25 | | |
26 | 26 | | |
| 27 | + | |
27 | 28 | | |
28 | 29 | | |
29 | 30 | | |
| |||
48 | 49 | | |
49 | 50 | | |
50 | 51 | | |
| 52 | + | |
51 | 53 | | |
52 | 54 | | |
53 | 55 | | |
54 | 56 | | |
55 | 57 | | |
56 | 58 | | |
| 59 | + | |
| 60 | + | |
| 61 | + | |
| 62 | + | |
57 | 63 | | |
58 | 64 | | |
59 | 65 | | |
| |||
0 commit comments