Skip to content

Commit 226be0b

Browse files
committed
Included credential forwarding
1 parent b439cca commit 226be0b

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

packages/util/src/url.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,8 @@ export function isCloudWorkstation(host: string): boolean {
2424
}
2525

2626
export async function testConnectionAlive(endpoint: string): Promise<boolean> {
27-
const result = await fetch(endpoint);
27+
const result = await fetch(endpoint, {
28+
credentials: 'include'
29+
});
2830
return result.ok;
2931
}

0 commit comments

Comments
 (0)