From f766a8cd1bd2205e68aed4732a76598770d25562 Mon Sep 17 00:00:00 2001 From: Jonathan Zernik Date: Wed, 18 Aug 2021 19:47:47 -0700 Subject: [PATCH] Use different port for envoy in javascript client config (#972) --- frontend/src/squeakclient/requests.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/squeakclient/requests.js b/frontend/src/squeakclient/requests.js index 6853768d..93062983 100644 --- a/frontend/src/squeakclient/requests.js +++ b/frontend/src/squeakclient/requests.js @@ -131,7 +131,7 @@ const SERVER_PORT = process.env.REACT_APP_SERVER_PORT || window.location.port; export let web_host_port = window.location.protocol + '//' + window.location.hostname + ':' + SERVER_PORT; console.log(SqueakAdminClient); -var client = new SqueakAdminClient('http://' + window.location.hostname + ':8080') +var client = new SqueakAdminClient('http://' + window.location.hostname + ':15081') function handleErrorResponse(response, route, handleError) {