Skip to content

Commit

Permalink
Reverted client IP back to localhost
Browse files Browse the repository at this point in the history
  • Loading branch information
oisinq committed Dec 24, 2019
1 parent 7a6dc20 commit 857fc39
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ public void loginButtonAction() throws IOException, URISyntaxException {
//this gets the gateway from the load balancer
//RestTemplate restTemplate = new RestTemplate();
//String temp = restTemplate.getForObject("http://192.168.99.100:8081/getGateway", String.class);
Client client = new Client(new URI("ws://192.168.99.100:8080/"), username, controller);
Client client = new Client(new URI("ws://localhost:8080/"), username, controller);
Thread x = new Thread(client);
x.start();
}
Expand Down

0 comments on commit 857fc39

Please sign in to comment.