Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix Inssue iluwatar#1957
  • Loading branch information
GustavoOliani authored Sep 10, 2022
1 parent 5fd5840 commit a143af6
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ public class DefaultCircuitBreaker implements CircuitBreaker {
int failureCount;
private final int failureThreshold;
private State state;
private final long futureTime = 1000 * 1000 * 1000 * 1000;
private final long futureTime = 1000L * 1000 * 1000 * 1000;

/**
* Constructor to create an instance of Circuit Breaker.
Expand Down

0 comments on commit a143af6

Please sign in to comment.