Merge branch 'dillon/34.1-jenkins-vapor' into vapor/development

This commit is contained in:
Dillon Ngo
2024-03-21 13:49:34 +08:00
2 changed files with 3 additions and 3 deletions
@@ -75,7 +75,7 @@ class ListPackingListsJobLogic extends AbstractControllerLogic
// ListPackingListsJob::dispatch($listGenericJobObject)->onQueue('hellokitty2'); //cief todo: testing sqs
// }
// }
ListPackingListsJob::dispatch($listGenericJobObject)->onQueue('shipping-portal-high_priority');
ListPackingListsJob::dispatch($listGenericJobObject)->onQueue(env('SQS_PREFIX', '').'high_priority');
$result = [];
$result['job_id'] = $jobId;
+2 -2
View File
@@ -34,10 +34,10 @@ return [
'driver' => 'sync',
],
'shipping-portal-high_priority' => [
'high_priority' => [
'driver' => 'database',
'table' => 'jobs',
'queue' => 'shipping-portal-high_priority',
'queue' => 'high_priority',
'retry_after' => 3600,
'after_commit' => false,
],