Skip to content

Commit c628618

Browse files
authored
[9.x] Updated qeueus.md Doc (#8690)
Fixed a grammatical error.
1 parent b9d5b0f commit c628618

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

queues.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1003,7 +1003,7 @@ One approach to specifying the maximum number of times a job may be attempted is
10031003
php artisan queue:work --tries=3
10041004
```
10051005

1006-
If a job exceeds its maximum number of attempts, it will be considered a "failed" job. For more information on handling failed jobs, consult the [failed job documentation](#dealing-with-failed-jobs). If `--tries=0` is provided to the `queue:work` command, the job will retried indefinitely.
1006+
If a job exceeds its maximum number of attempts, it will be considered a "failed" job. For more information on handling failed jobs, consult the [failed job documentation](#dealing-with-failed-jobs). If `--tries=0` is provided to the `queue:work` command, the job will be retried indefinitely.
10071007

10081008
You may take a more granular approach by defining the maximum number of times a job may be attempted on the job class itself. If the maximum number of attempts is specified on the job, it will take precedence over the `--tries` value provided on the command line:
10091009

0 commit comments

Comments
 (0)