# HG changeset patch # User Roman Kennke # Date 1348001573 -7200 # Node ID bd6dab2e930087b33fc0acdd0e5ebf5c4de71791 # Parent fca33da6c7694611097857d10f54c40ec470e345 Change ports region for dynamic port finder to 49152-65535. diff -r fca33da6c769 -r bd6dab2e9300 common/core/src/main/java/com/redhat/thermostat/test/FreePortFinder.java --- a/common/core/src/main/java/com/redhat/thermostat/test/FreePortFinder.java Tue Sep 18 22:34:55 2012 +0200 +++ b/common/core/src/main/java/com/redhat/thermostat/test/FreePortFinder.java Tue Sep 18 22:52:53 2012 +0200 @@ -46,8 +46,8 @@ void tryPort(int port) throws Exception; } - private static final int MIN_PORT = 1024; - private static final int MAX_PORT = 49151; + private static final int MIN_PORT = 49152; + private static final int MAX_PORT = 65535; private static volatile int nextPort = MAX_PORT;