-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(client): try to reconnect to app websocket if socket is closed (#…
…279) * add logic back to try to reconnect to the app websocket if socket is closed * cleanup * include error in test failure * make arguments more aligned with conductor API * fix ws options type * fix test * updated test to assert on error message * refactor(app): remove unused fn containsCell * refactor(client): unify usage of listeners & handle invalid app tokens * docs: update changelog * revert: make WsClientOptions optional * fix(common): return request error without awaiting timeout * fix(client): unset auth token on rejected connection attempt * build(nix): update flake --------- Co-authored-by: Jost Schulte <[email protected]> Co-authored-by: Jost Schulte <jost-s@@users.noreply.github.com>
- Loading branch information
1 parent
7a76a2a
commit d6b8893
Showing
11 changed files
with
347 additions
and
165 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,4 +4,4 @@ target | |
node_modules | ||
/lib | ||
.tsbuildinfo | ||
.hc | ||
.hc* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,5 +7,5 @@ | |
**Signature:** | ||
|
||
```typescript | ||
options: WsClientOptions; | ||
options: WsClientOptions | undefined; | ||
``` |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.