Skip to content

Commit 0e4a5d2

Browse files
committed
Slight rate limit bump
1 parent a947401 commit 0e4a5d2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

registry/rate-limits.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import (
1010

1111
var (
1212
registryRateLimiters = map[string]*rate.Limiter{
13-
dockerHubCanonical: rate.NewLimiter(200/rate.Limit((1*time.Minute).Seconds()), 200), // stick to at most 200/min in registry/Hub requests (and allow an immediate burst of 200)
13+
dockerHubCanonical: rate.NewLimiter(300/rate.Limit((1*time.Minute).Seconds()), 300), // stick to at most 300/min in registry/Hub requests (and allow an immediate burst of 300)
1414
}
1515
)
1616

0 commit comments

Comments
 (0)