-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
🐛 Fix connect lock issues #1
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -351,7 +351,6 @@ export default class ReconnectingWebSocket { | |
if (this._connectLock || !this._shouldReconnect) { | ||
return; | ||
} | ||
this._connectLock = true; | ||
|
||
const { | ||
maxRetries = DEFAULT.maxRetries, | ||
|
@@ -364,6 +363,7 @@ export default class ReconnectingWebSocket { | |
return; | ||
} | ||
|
||
this._connectLock = true; | ||
this._retryCount++; | ||
|
||
this._debug('connect', this._retryCount); | ||
|
@@ -376,6 +376,7 @@ export default class ReconnectingWebSocket { | |
.then(url => { | ||
// close could be called before creating the ws | ||
if (this._closeCalled) { | ||
this._connectLock = false; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. They said to add There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I think they're incorrect, though. Adding it in the The issue is that if you set
|
||
return; | ||
} | ||
this._debug('connect', {url, protocols: this._protocols}); | ||
|
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.
Do we really want to have version with
reedsy
if the package is called@reedsy/reconnectiong-websocket
?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.
I think it's nice: it encodes the upstream version we're on (which we can upgrade later if it also upgrades), and specifies our own internal
reedsy
version. It's what we're already doing inquill
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.
👍 We do not use this in all forked packages I guess we should unify it then
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.
how to install it?npm install @reedsy/[email protected],always fail,not found
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.
#1 (comment)
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.
Method 1 is not available. I tried to install according to the configuration in the document, but still failed to install. Method 2 is OK, but it is troublesome to configure "@reedsy:registry=https://npm.pkg.github.com" and "github token" of. npmrc by the company owner。
According to the prompts in the figure below, the following configuration failed in the window system