We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a49db6f commit dda7250Copy full SHA for dda7250
src/CachedKeySet.php
@@ -213,7 +213,7 @@ private function rateLimitExceeded(): bool
213
214
$cacheItem = $this->cache->getItem($this->rateLimitCacheKey);
215
if (!$cacheItem->isHit()) {
216
- $cacheItem->expiresAfter(1); // # of calls are cached each minute
+ $cacheItem->expiresAfter(60); // # of calls are cached each minute
217
}
218
219
$callsPerMinute = (int) $cacheItem->get();
0 commit comments