Skip to content

Commit

Permalink
Fix the default value is wrong
Browse files Browse the repository at this point in the history
  • Loading branch information
chenzhiguo committed Jan 6, 2025
1 parent 59fc39c commit b108039
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ public abstract class AbstractRateLimiter implements RateLimiter {
@Getter
protected long lastAccessTime;

protected final AtomicBoolean started = new AtomicBoolean(false);
protected final AtomicBoolean started = new AtomicBoolean(true);

/**
* Constructs an instance of the AbstractRateLimiter class with the given rate limit policy and time unit.
Expand Down

0 comments on commit b108039

Please sign in to comment.