From 49fb27ab429ee58800bb3a38628868a2654f1dad Mon Sep 17 00:00:00 2001 From: Sanjeev Date: Tue, 12 Sep 2023 11:35:15 -0500 Subject: [PATCH] #916-modified added a space after 'and' and before the single quote ' --- docs/modules/ROOT/pages/features.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/modules/ROOT/pages/features.adoc b/docs/modules/ROOT/pages/features.adoc index 1fc9af7c..84da5eb6 100644 --- a/docs/modules/ROOT/pages/features.adoc +++ b/docs/modules/ROOT/pages/features.adoc @@ -349,7 +349,7 @@ Spring Cloud Task lets you establish that only one task with a given task name c at a time. To do so, you need to establish the <> and set `spring.cloud.task.single-instance-enabled=true` for each task execution. While the first task execution is running, any other time you try to run a task with the same -<> and`spring.cloud.task.single-instance-enabled=true`, the +<> and `spring.cloud.task.single-instance-enabled=true`, the task fails with the following error message: `Task with name "application" is already running.` The default value for `spring.cloud.task.single-instance-enabled` is `false`. The following example shows how to set `spring.cloud.task.single-instance-enabled` to `true`: