Skip to content

Commit 2c5c2d4

Browse files
Andrea Falzettiandreafalzetti
Andrea Falzetti
authored andcommitted
fix(jetbrains): gateway plugin hands on auth issue
1 parent e1985ce commit 2c5c2d4

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

components/gitpod-protocol/java/src/main/java/io/gitpod/gitpodprotocol/api/GitpodServerLauncher.java

+4
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,10 @@ public GitpodServerConnection listen(
8282
}
8383
}
8484
ClientContainer container = new ClientContainer(httpClient);
85+
86+
// stop container immediately since we close only when a session is already gone
87+
container.setStopTimeout(0);
88+
8589
// allow clientContainer to own httpClient (for start/stop lifecycle)
8690
container.getClient().addManaged(httpClient);
8791
container.start();

0 commit comments

Comments
 (0)