We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e7f89f3 commit 6df34f7Copy full SHA for 6df34f7
src/api/registerer.ts
@@ -678,6 +678,10 @@ export class Registerer {
678
// For that, calculate the delay as a percentage of the expiration time
679
this.registrationTimer = setTimeout(() => {
680
this.registrationTimer = undefined;
681
+ if (this.waiting) {
682
+ this.logger.warn("Outstanding REGISTER request already in progress, skipping re-registration");
683
+ return;
684
+ }
685
this.register();
686
}, (this.refreshFrequency / 100) * expires * 1000);
687
0 commit comments