From 0260d0a9a972b04ba114a3520b003ecdf995dfcd Mon Sep 17 00:00:00 2001 From: Nikolay Mahotkin Date: Tue, 7 Apr 2015 11:27:24 +0300 Subject: [PATCH] Fixing docs on target task property in README Closes-Bug: #1441009 Change-Id: I3626a545c66d5f1e3d8237e2198fb149fcab8a6b --- README.rst | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.rst b/README.rst index 402ea31e0..a6acf426c 100644 --- a/README.rst +++ b/README.rst @@ -145,17 +145,17 @@ To run Mistral Task Executor instance perform the following command in a shell:: Note that at least one Engine instance and one Executor instance should be running so that workflow tasks are processed by Mistral. -If it is needed to run some tasks on specific executor then *task affinity* feature can be used to send these tasks directly to this executor. In configuration file edit section "executor" *host* property:: +If it is needed to run some tasks on specific executor then *task affinity* feature can be used to send these tasks directly to specific executor. In configuration file edit section "executor" *host* property:: [executor] host = my_favorite_executor -Then start (restart) executor. Use *targets* task property to specify this executor:: +Then start (restart) executor. Use *target* task property to specify this executor:: ... Workflow YAML ... task1: ... - targets: ["my_favorite_executor"] + target: my_favorite_executor ... Workflow YAML ... Running Multiple Mistral Servers Under the Same Process