Skip to content

Commit c09e7d1

Browse files
Merge pull request #15 from tommerrett/patch-1
Update README.md with failed jobs configuration
2 parents 0544f56 + 7c8e423 commit c09e7d1

File tree

1 file changed

+12
-2
lines changed

1 file changed

+12
-2
lines changed

README.md

+12-2
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,17 @@ composer require stackkit/laravel-google-cloud-tasks-queue
6767
QUEUE_CONNECTION=cloudtasks
6868
```
6969

70-
(4) Create a new Cloud Tasks queue using `gcloud`
70+
(4) [Laravel ^8.0 and above only] configure failed tasks to use the `database-uuids` driver in `config/queue.php`
71+
72+
```
73+
'failed' => [
74+
'database' => env('DB_CONNECTION', 'mysql'),
75+
'table' => 'failed_jobs',
76+
'driver' => 'database-uuids',
77+
],
78+
```
79+
80+
(5) Create a new Cloud Tasks queue using `gcloud`
7181

7282
````bash
7383
gcloud tasks queues create [QUEUE_ID]
@@ -157,4 +167,4 @@ This package verifies that the token is digitally signed by Google. Only Google
157167

158168
More information about OpenID Connect:
159169

160-
https://developers.google.com/identity/protocols/oauth2/openid-connect
170+
https://developers.google.com/identity/protocols/oauth2/openid-connect

0 commit comments

Comments
 (0)