From 3cc99b592fa3ae8a93ad472581b93d8563ef8949 Mon Sep 17 00:00:00 2001 From: Ole Date: Mon, 15 Jul 2024 15:06:24 +0200 Subject: [PATCH] Apply suggestions from code review Co-authored-by: Bastian Waidelich --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index d84871e..205032a 100644 --- a/README.md +++ b/README.md @@ -189,7 +189,7 @@ The following parameters are supported by all queues: | className | string | - | FQN of the class implementing the queue | | maximumNumberOfReleases | integer | 3 | Max. number of times a message is re-
released to the queue if a job failed | | 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 | -| outputResults | boolean | FALSE | If set to true, forwards the full output (stdout + stderr) of the respective job to the stdout of its "parent" | +| outputResults | boolean | FALSE | If TRUE the full output (stdout + stderr) of the respective job is forwarded to the stdout of its "parent" (only applicable if `executeIsolated` is `true`) | | queueNamePrefix | string | - | Optional prefix for the internal queue name,
allowing to re-use the same backend over multiple installations | | options | array | - | Options for the queue.
Implementation specific (see corresponding package) | | releaseOptions | array | - | Options that will be passed to `release()` when a job failed.
Implementation specific (see corresponding package) |