Skip to content

Commit

Permalink
Merge pull request #18 from michalsn/fix-typo
Browse files Browse the repository at this point in the history
fix: typo in the `queue:work` param
  • Loading branch information
michalsn authored Dec 17, 2023
2 parents 30d7b60 + 7175ba4 commit 3f04fa3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Commands/QueueWork.php
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@ private function readOptions(array $params, QueueConfig $config, string $queue):
];

// Options that, being defined, cannot be `true`
$keys = ['sleep', 'rest', 'maxJobs', 'maxTime', 'memory', 'priority', 'tries', 'retyAfter'];
$keys = ['sleep', 'rest', 'maxJobs', 'maxTime', 'memory', 'priority', 'tries', 'retryAfter'];

foreach ($keys as $key) {
if ($options[$key] === true) {
Expand Down

0 comments on commit 3f04fa3

Please sign in to comment.