Skip to content

Commit

Permalink
Adjust ACME client throttle to 10/10s (close #143)
Browse files Browse the repository at this point in the history
  • Loading branch information
mholt committed Sep 16, 2021
1 parent b74a9ce commit 047b545
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions acmeclient.go
Original file line number Diff line number Diff line change
Expand Up @@ -370,11 +370,11 @@ var (

// RateLimitEvents is how many new events can be allowed
// in RateLimitEventsWindow.
RateLimitEvents = 20
RateLimitEvents = 10

// RateLimitEventsWindow is the size of the sliding
// window that throttles events.
RateLimitEventsWindow = 1 * time.Minute
RateLimitEventsWindow = 10 * time.Second
)

// Some default values passed down to the underlying ACME client.
Expand Down

0 comments on commit 047b545

Please sign in to comment.