Skip to content

Commit b58745f

Browse files
update
1 parent fafac33 commit b58745f

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/ConfigurationClientManager.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -118,8 +118,7 @@ export class ConfigurationClientManager {
118118
(!this.#dynamicClients ||
119119
// All dynamic clients are in backoff means no client is available
120120
this.#dynamicClients.every(client => currentTime < client.backoffEndTime) ||
121-
currentTime >= this.#lastFallbackClientRefreshTime + FALLBACK_CLIENT_REFRESH_EXPIRE_INTERVAL)
122-
) {
121+
currentTime >= this.#lastFallbackClientRefreshTime + FALLBACK_CLIENT_REFRESH_EXPIRE_INTERVAL)) {
123122
this.#lastFallbackClientRefreshAttempt = currentTime;
124123
await this.#discoverFallbackClients(this.endpoint.hostname);
125124
return availableClients.concat(this.#dynamicClients);

0 commit comments

Comments
 (0)