File tree 1 file changed +12
-2
lines changed
1 file changed +12
-2
lines changed Original file line number Diff line number Diff line change @@ -67,7 +67,17 @@ composer require stackkit/laravel-google-cloud-tasks-queue
67
67
QUEUE_CONNECTION=cloudtasks
68
68
```
69
69
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 `
71
81
72
82
```` bash
73
83
gcloud tasks queues create [QUEUE_ID]
@@ -157,4 +167,4 @@ This package verifies that the token is digitally signed by Google. Only Google
157
167
158
168
More information about OpenID Connect:
159
169
160
- https://developers.google.com/identity/protocols/oauth2/openid-connect
170
+ https://developers.google.com/identity/protocols/oauth2/openid-connect
You can’t perform that action at this time.
0 commit comments