Skip to content

Commit 8bd040d

Browse files
Andrea Falzettiroboquat
Andrea Falzetti
authored andcommitted
fix(jetbrains): gateway plugin hands on auth issue
1 parent 29c88a7 commit 8bd040d

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

Lines changed: 4 additions & 0 deletions
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)