Moving hardcoded ports to ephemeral range suitable for more environments

This commit is contained in:
Joakim Erdfelt 2014-10-02 10:31:32 -07:00
parent 8bca0bbe7e
commit 3636bd6894
1 changed files with 2 additions and 2 deletions

View File

@ -76,8 +76,8 @@ public class SecuredRedirectHandlerTest
server = new Server();
int port = 12080;
int securePort = 12443;
int port = 32080;
int securePort = 32443;
// Setup HTTP Configuration
HttpConfiguration httpConf = new HttpConfiguration();