updateBackoffStatus()

in src/ConfigurationClientWrapper.ts [18:26]


    updateBackoffStatus(successfull: boolean) {
        if (successfull) {
            this.#failedAttempts = 0;
            this.backoffEndTime = Date.now();
        } else {
            this.#failedAttempts += 1;
            this.backoffEndTime = Date.now() + getExponentialBackoffDuration(this.#failedAttempts);
        }
    }