From 74b02e75239bf86405768cf009af87004880b481 Mon Sep 17 00:00:00 2001 From: Mike Cote Date: Thu, 29 Oct 2020 10:14:22 -0400 Subject: [PATCH 1/2] Move task manager README.md to root of plugin --- x-pack/plugins/task_manager/{server => }/README.md | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename x-pack/plugins/task_manager/{server => }/README.md (100%) diff --git a/x-pack/plugins/task_manager/server/README.md b/x-pack/plugins/task_manager/README.md similarity index 100% rename from x-pack/plugins/task_manager/server/README.md rename to x-pack/plugins/task_manager/README.md From fbbfdc245a200c4bd51ea1e61e9b23db80f4935e Mon Sep 17 00:00:00 2001 From: Mike Cote Date: Thu, 29 Oct 2020 10:53:36 -0400 Subject: [PATCH 2/2] Fix failing test, update task manager plugin description in docs --- docs/developer/plugin-list.asciidoc | 4 ++-- x-pack/plugins/task_manager/README.md | 3 ++- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/docs/developer/plugin-list.asciidoc b/docs/developer/plugin-list.asciidoc index 8e08c3806446d..914bd8fce6dff 100644 --- a/docs/developer/plugin-list.asciidoc +++ b/docs/developer/plugin-list.asciidoc @@ -488,8 +488,8 @@ the alertTypes by the Stack in the alerting plugin, register associated HTTP routes, etc. -|{kib-repo}blob/{branch}/x-pack/plugins/task_manager[taskManager] -|WARNING: Missing README. +|{kib-repo}blob/{branch}/x-pack/plugins/task_manager/README.md[taskManager] +|The task manager is a generic system for running background tasks. |{kib-repo}blob/{branch}/x-pack/plugins/telemetry_collection_xpack/README.md[telemetryCollectionXpack] diff --git a/x-pack/plugins/task_manager/README.md b/x-pack/plugins/task_manager/README.md index a0b35ad094537..b25d3cc49f980 100644 --- a/x-pack/plugins/task_manager/README.md +++ b/x-pack/plugins/task_manager/README.md @@ -1,7 +1,8 @@ # Kibana task manager -The task manager is a generic system for running background tasks. It supports: +The task manager is a generic system for running background tasks. +It supports: - Single-run and recurring tasks - Scheduling tasks to run after a specified datetime - Basic retry logic