8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4d207b6 commit 06b91dfCopy full SHA for 06b91df
test/utils/helpers.ts
@@ -129,7 +129,7 @@ export function isAddressInfo(address: unknown): address is net.AddressInfo {
129
*/
130
export async function getMaybeProxiedCodeServer(codeServer: CodeServerPage | CodeServer): Promise<string> {
131
let address = await codeServer.address()
132
-if (process.env.USE_PROXY === "1") {
+ if (process.env.USE_PROXY === "1") {
133
const uri = new URL(address)
134
return `http://${uri.hostname}:${REVERSE_PROXY_PORT}/${uri.port}/${REVERSE_PROXY_BASE_PATH}/`
135
}
0 commit comments