We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e1985ce commit 2c5c2d4Copy full SHA for 2c5c2d4
components/gitpod-protocol/java/src/main/java/io/gitpod/gitpodprotocol/api/GitpodServerLauncher.java
@@ -82,6 +82,10 @@ public GitpodServerConnection listen(
82
}
83
84
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
89
// allow clientContainer to own httpClient (for start/stop lifecycle)
90
container.getClient().addManaged(httpClient);
91
container.start();
0 commit comments