changeset 625:bd6dab2e9300

Change ports region for dynamic port finder to 49152-65535.
author Roman Kennke <rkennke@redhat.com>
date Tue, 18 Sep 2012 22:52:53 +0200
parents fca33da6c769
children dacf6c5ea49f 9eed9fa986ad
files common/core/src/main/java/com/redhat/thermostat/test/FreePortFinder.java
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- 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;