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 58d2da1 commit 9c84cd0Copy full SHA for 9c84cd0
src/Illuminate/Queue/Middleware/RateLimited.php
@@ -67,7 +67,7 @@ public function handle($job, $next)
67
$next,
68
collect(Arr::wrap($limiterResponse))->map(function ($limit) {
69
return (object) [
70
- 'key' => hash('xxh128', $this->limiterName.$limit->key),
+ 'key' => md5($this->limiterName.$limit->key),
71
'maxAttempts' => $limit->maxAttempts,
72
'decaySeconds' => $limit->decaySeconds,
73
];
0 commit comments