Compare commits
2 Commits
1970763114
...
c52e437f50
Author | SHA1 | Date |
---|---|---|
Derrick Hammer | c52e437f50 | |
Derrick Hammer | 6f30bb7faa |
|
@ -14,7 +14,7 @@ export class SwarmClient extends Client {
|
|||
this._autoReconnect = autoReconnect;
|
||||
this._connectBackoff = new Backoff({
|
||||
strategy: "fibo",
|
||||
maxAttempts: 0,
|
||||
maxAttempts: Number.MAX_SAFE_INTEGER,
|
||||
});
|
||||
}
|
||||
get swarm() {
|
||||
|
|
|
@ -21,7 +21,7 @@ export class SwarmClient extends Client {
|
|||
this._autoReconnect = autoReconnect;
|
||||
this._connectBackoff = new Backoff({
|
||||
strategy: "fibo",
|
||||
maxAttempts: 0,
|
||||
maxAttempts: Number.MAX_SAFE_INTEGER,
|
||||
});
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue