Compare commits

..

No commits in common. "c52e437f50385ffb501928ec59cab8bf6387250a" and "1970763114b96c247a81153c270f622aef36e362" have entirely different histories.

2 changed files with 2 additions and 2 deletions

2
dist/index.js vendored
View File

@ -14,7 +14,7 @@ export class SwarmClient extends Client {
this._autoReconnect = autoReconnect;
this._connectBackoff = new Backoff({
strategy: "fibo",
maxAttempts: Number.MAX_SAFE_INTEGER,
maxAttempts: 0,
});
}
get swarm() {

View File

@ -21,7 +21,7 @@ export class SwarmClient extends Client {
this._autoReconnect = autoReconnect;
this._connectBackoff = new Backoff({
strategy: "fibo",
maxAttempts: Number.MAX_SAFE_INTEGER,
maxAttempts: 0,
});
}