Skip to content

Commit

Permalink
fix(jetbrains): gateway plugin hands on auth issue
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrea Falzetti authored and andreafalzetti committed Sep 21, 2022
1 parent e1985ce commit 6c1391d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,10 @@ public GitpodServerConnection listen(
}
}
ClientContainer container = new ClientContainer(httpClient);

// stop container immediately since we close only when a session is already gone
container.setStopTimeout(0);

// allow clientContainer to own httpClient (for start/stop lifecycle)
container.getClient().addManaged(httpClient);
container.start();
Expand Down
2 changes: 1 addition & 1 deletion components/ide/jetbrains/gateway-plugin/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ If you want to open a real workspace in the dev build, follow these steps:
./gradlew runIde --args="jetbrains-gateway://connect#gitpodHost=gitpod.io&workspaceId=andreafalze-gitpodexper-4xasfqb42zr&backendPort=63342"
```

For executing the tests and the static analysis validations, run:
For executing the tests and the static analysis validations, run:.

```console
./gradlew check
Expand Down

0 comments on commit 6c1391d

Please sign in to comment.