Skip to content

Commit

Permalink
GEODE-640 CI failure: CacheXml80DUnitTest.testCacheServerDisableTcpNo…
Browse files Browse the repository at this point in the history
…Delay

Use TCP port 0, so that an available port will be automatically assigned.
  • Loading branch information
jchen21 committed Mar 15, 2016
1 parent 44c388e commit f7ca634
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -183,6 +183,7 @@ public void testCacheServerDisableTcpNoDelay()
CacheCreation cache = new CacheCreation();

CacheServer cs = cache.addCacheServer();
cs.setPort(0);
cs.setTcpNoDelay(false);
RegionAttributesCreation attrs = new RegionAttributesCreation(cache);
attrs.setDataPolicy(DataPolicy.NORMAL);
Expand Down

0 comments on commit f7ca634

Please sign in to comment.