@@ -207,6 +207,7 @@ The `schedule` option can be specified in one of the following formats:
207207| Option | Type | Default | Description |
208208| ------------| ---------| ----------------| -----------------------------------------------------------------------------|
209209| ` command ` | string | * not  ; set* | Symfony console command name. |
210+ | ` name ` | string | * not  ; set* | Optional. The name associated with the worker process. |
210211| ` schedule ` | int | "1 minute" | Optional. Schedule in one of the formats described above. |
211212| ` jitter ` | int | 0 | Optional. Jitter in seconds that adds a random time offset to the schedule. |
212213| ` user ` | int | * not  ; set* | Optional. Unix user of process. Current user by default. |
@@ -218,10 +219,11 @@ This is the part of [Symfony bundle](/docs/integrations/symfony)
218219
219220This worker type is designed for running long-running symfony console commands.
220221
221- | Option | Type | Default | Description |
222- | --------------------| -----------------------------------------------------| ----------------| -----------------------------------------------------------------------|
223- | ` command ` | string | * not  ; set* | Symfony console command name. |
224- | ` count ` | int | 1 | Optional. The number of processes to start. |
225- | ` reloadable ` | bool | true | Optional. Whether the worker can be reloaded with the reload command. |
226- | ` user ` | string | * not  ; set* | Optional. Unix user of process. Current user by default. |
227- | ` group ` | string | * not  ; set* | Optional. Unix group of process. Current group by default. |
222+ | Option | Type | Default | Description |
223+ | --------------| -----------| ----------------| -----------------------------------------------------------------------|
224+ | ` command ` | string | * not  ; set* | Symfony console command name. |
225+ | ` name ` | string | * not  ; set* | Optional. The name associated with the worker process. |
226+ | ` count ` | int | 1 | Optional. The number of processes to start. |
227+ | ` reloadable ` | bool | true | Optional. Whether the worker can be reloaded with the reload command. |
228+ | ` user ` | string | * not  ; set* | Optional. Unix user of process. Current user by default. |
229+ | ` group ` | string | * not  ; set* | Optional. Unix group of process. Current group by default. |
0 commit comments