Skip to content

Commit

Permalink
Remove WaitStrategy in the Retryer used to check if ServiceRegistry i…
Browse files Browse the repository at this point in the history
…s refreshed during ServiceRegistryUpdater startup
  • Loading branch information
Jitendra Dhawan committed Dec 12, 2024
1 parent 2754308 commit 24d9515
Showing 1 changed file with 0 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,6 @@ public void start() {
RetryerBuilder.<Boolean>newBuilder()
.retryIfResult(r -> null == r || !r)
.retryIfException()
.withWaitStrategy(WaitStrategies.fixedWait(1, TimeUnit.SECONDS))
.build()
.call(serviceRegistry::isRefreshed);
}
Expand Down

0 comments on commit 24d9515

Please sign in to comment.