This repository was archived by the owner on Jul 28, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 145
Allow websocket retries with backoff time in between #341
Merged
Merged
Changes from all commits
Commits
Show all changes
28 commits
Select commit
Hold shift + click to select a range
4f1f48f
Allow retries with backoff time in between.
abd9f5d
Updated changelog.
33d33f4
Add PR # to changelog.
b383422
Wrap self._connect within retry loop.
ed2a509
Resolve merge conflicts.
3a89767
Refactor exception message printing.
2079e40
Fix return type.
08e3201
Merge branch 'master' into retry-websocket-backoff
a814010
Merge branch 'master' into retry-websocket-backoff
3caac9e
Return instead of break.
9ee8911
Remove unneeded exceptions.
3d6889d
Preserve original exception in handling.
5da4edb
Change reset counter position.
66990bf
Merge branch 'retry-websocket-backoff' of https://github.com/luisg5/q…
69756c3
Merge branch 'master' into retry-websocket-backoff
d29832a
Merge branch 'master' into retry-websocket-backoff
lgarc15 cd9e969
Merge branch 'master' into retry-websocket-backoff
e2b8c9b
Isolate certain expcetions to prevent retrying.
e643df5
Merge branch 'master' into retry-websocket-backoff
867ef14
Merge branch 'retry-websocket-backoff' of https://github.com/luisg5/q…
bfb0de7
Modify exception handling.
06ef611
Add InvalidURI exception for non retry.
78a91cf
Remove SSLError docstring.
61fdd9b
Resolve merge conflicts.
d725534
Raise WebsocketTimeoutError.
f96515c
Refactor WebsocketError exception handling.
4f458fc
Fix lint.
401c60c
Update docstring return type.
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
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
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can you also update the docstring for the return type (from
Connect
toWebSocketClientProtocol
)?