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 fafac33 commit b58745fCopy full SHA for b58745f
src/ConfigurationClientManager.ts
@@ -118,8 +118,7 @@ export class ConfigurationClientManager {
118
(!this.#dynamicClients ||
119
// All dynamic clients are in backoff means no client is available
120
this.#dynamicClients.every(client => currentTime < client.backoffEndTime) ||
121
- currentTime >= this.#lastFallbackClientRefreshTime + FALLBACK_CLIENT_REFRESH_EXPIRE_INTERVAL)
122
- ) {
+ currentTime >= this.#lastFallbackClientRefreshTime + FALLBACK_CLIENT_REFRESH_EXPIRE_INTERVAL)) {
123
this.#lastFallbackClientRefreshAttempt = currentTime;
124
await this.#discoverFallbackClients(this.endpoint.hostname);
125
return availableClients.concat(this.#dynamicClients);
0 commit comments