Skip to content

Commit 02e5315

Browse files
authored
Grammar correction (#6976)
1 parent 6d389be commit 02e5315

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
@@ -496,7 +496,7 @@ If you wish to immediately delete any overlapping jobs so that they will not be
496496

497497
Laravel includes a `Illuminate\Queue\Middleware\ThrottlesExceptions` middleware that allows you to throttle exceptions. Once the job throws a given number of exceptions, all further attempts to execute the job are delayed until a specified time interval lapses. This middleware is particularly useful for jobs that interact with third-party services that are unstable.
498498

499-
For example, let's imagine a queued job that interacts with an third-party API that begins throwing exceptions. To throttle exceptions, you can return the `ThrottlesExceptions` middleware from your job's `middleware` method. Typically, this middleware should be paired with a job that implements [time based attempts](#time-based-attempts):
499+
For example, let's imagine a queued job that interacts with a third-party API that begins throwing exceptions. To throttle exceptions, you can return the `ThrottlesExceptions` middleware from your job's `middleware` method. Typically, this middleware should be paired with a job that implements [time based attempts](#time-based-attempts):
500500

501501
use Illuminate\Queue\Middleware\ThrottlesExceptions;
502502

0 commit comments

Comments
 (0)