You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
| name | It's the same of the return of the getName() method. |
75
+
| class_name | The full path with namespace of your job class (\App\Jobs\TestJob) |
76
+
| active | If the job is active or not |
77
+
| schedulable | If the job is schedulable or not |
78
78
| schedule_config | A JSON config of the schedule. {"method" : "The schedule methods from laravel", "params": "The params to the schedule method (optional)", "props": [ { "my_job_prop": 1 }, { "my_job_prop": 2 } ]} |
79
-
| max_attemps | The max attempts of the queue |
80
-
| max_instances | The max parallel instances of the queue |
81
-
| timeout | The timeout of the queue |
82
-
| delay | The delay to the next execution (Not implemented yet) |
83
-
| connection | The connection name of the queue provider. (If null = default) |
84
-
| aggregator | The aggregator is used to group the queues in a report |
79
+
| max_attemps | The max attempts of the queue |
80
+
| max_instances | The max parallel instances of the queue |
81
+
| timeout | The timeout of the queue |
82
+
| delay | The delay to the next execution (Not implemented yet) |
83
+
| connection | The connection name of the queue provider. (If null = default) |
84
+
| aggregator | The aggregator is used to group the queues in a report |
85
85
86
86
### Config
87
87
@@ -97,6 +97,7 @@ At the queue_manager.php config file you can configure:
97
97
| supervisor_update_timeout | The supervisor update timeout to gracefully stop the process when a configuration change | 600 |
98
98
| execute_as_api | Enable the queue as API mode | false |
99
99
| api_url | URL to run the queue as API mode |http://127.0.0.1/queue/process|
100
+
| fallback_connections | Array of fallback connections when first provider fails to dispatch |[]|
0 commit comments