From 7646254febd688ea9062b454221775774163c67a Mon Sep 17 00:00:00 2001 From: jeanp413 Date: Fri, 25 Apr 2025 21:21:23 +0530 Subject: [PATCH 1/2] Don't use binary format so it's possible to downgrate to http1.1 when http2 is not available --- src/publicApi.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/publicApi.ts b/src/publicApi.ts index 2f1b7c2..4e58f2c 100644 --- a/src/publicApi.ts +++ b/src/publicApi.ts @@ -84,7 +84,7 @@ export class GitpodPublicApi extends Disposable implements IGitpodAPI { baseUrl: serviceUrl.toString(), httpVersion: '2', interceptors: [authInterceptor, metricsInterceptor], - useBinaryFormat: true, + useBinaryFormat: false, pingIntervalMs: 120000, pingTimeoutMs: 10000 }); From 37d092eaaff6ace9b8b0e1c99d25988039a132ed Mon Sep 17 00:00:00 2001 From: jeanp413 Date: Fri, 25 Apr 2025 21:28:14 +0530 Subject: [PATCH 2/2] :up: bump version --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 3065d84..8235627 100644 --- a/package.json +++ b/package.json @@ -3,7 +3,7 @@ "displayName": "Gitpod", "description": "Required to connect to Classic workspaces", "publisher": "gitpod", - "version": "0.0.181", + "version": "0.0.182", "license": "MIT", "icon": "resources/gitpod.png", "repository": {