Skip to content

Commit f9155e2

Browse files
committed
TASK: Remove wrong default from README
There is no default for `releaseOptions`, that depends on the queue backend.
1 parent 01daeb2 commit f9155e2

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -184,14 +184,14 @@ With this a queue named `test` will be available.
184184

185185
The following parameters are supported by all queues:
186186

187-
| Parameter | Type | Default | Description |
188-
| ----------------------- |---------| ----------------:| ---------------------------------------- |
189-
| className | string | - | FQN of the class implementing the queue |
190-
| maximumNumberOfReleases | integer | 3 | Max. number of times a message is re-<br>released to the queue if a job failed |
191-
| executeIsolated | boolean | FALSE | If TRUE jobs for this queue are executed in a separate Thread. This makes sense in order to avoid memory leaks and side-effects |
192-
| queueNamePrefix | string | - | Optional prefix for the internal queue name,<br>allowing to re-use the same backend over multiple installations |
193-
| options | array | - | Options for the queue.<br>Implementation specific (see corresponding package) |
194-
| releaseOptions | array | ['delay' => 300] | Options that will be passed to `release()` when a job failed<br>Implementation specific (see corresponding package) |
187+
| Parameter | Type | Default | Description |
188+
| ----------------------- |---------|--------:|---------------------------------------------------------------------------------------------------------------------------------|
189+
| className | string | - | FQN of the class implementing the queue |
190+
| maximumNumberOfReleases | integer | 3 | Max. number of times a message is re-<br>released to the queue if a job failed |
191+
| executeIsolated | boolean | FALSE | If TRUE jobs for this queue are executed in a separate Thread. This makes sense in order to avoid memory leaks and side-effects |
192+
| queueNamePrefix | string | - | Optional prefix for the internal queue name,<br>allowing to re-use the same backend over multiple installations |
193+
| options | array | - | Options for the queue.<br>Implementation specific (see corresponding package) |
194+
| releaseOptions | array | - | Options that will be passed to `release()` when a job failed.<br>Implementation specific (see corresponding package) |
195195

196196
A more complex example could look something like:
197197

0 commit comments

Comments
 (0)