File tree Expand file tree Collapse file tree 1 file changed +12
-2
lines changed Expand file tree Collapse file tree 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
6767QUEUE_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 
7383gcloud tasks queues create [QUEUE_ID]
@@ -157,4 +167,4 @@ This package verifies that the token is digitally signed by Google. Only Google
157167
158168More 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 
 
 
   
 
     
   
   
          
    
    
     
    
      
     
     
    You can’t perform that action at this time.
  
 
    
  
    
      
        
     
       
      
     
   
 
    
    
  
 
  
 
     
    
0 commit comments