Use different port for envoy in javascript client config (#972)

This commit is contained in:
Jonathan Zernik 2021-08-18 19:47:47 -07:00 committed by GitHub
parent 0247d586e3
commit f766a8cd1b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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) {