mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 17:59:23 -04:00
Prevents xpack.task_manager.index being set to .tasks (#52002)
A quick solution in preventing what was described in kibana#47716 Signed-off-by: Tyler Smalley <tyler.smalley@elastic.co>
This commit is contained in:
parent
fe24b3d441
commit
d0d6d43aee
1 changed files with 2 additions and 1 deletions
|
@ -40,7 +40,8 @@ export function taskManager(kibana: any) {
|
|||
.default(3000),
|
||||
index: Joi.string()
|
||||
.description('The name of the index used to store task information.')
|
||||
.default('.kibana_task_manager'),
|
||||
.default('.kibana_task_manager')
|
||||
.invalid(['.tasks']),
|
||||
max_workers: Joi.number()
|
||||
.description(
|
||||
'The maximum number of tasks that this Kibana instance will run simultaneously.'
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue