Skip to content

Commit

Permalink
make control center index as system index (#919)
Browse files Browse the repository at this point in the history
Signed-off-by: Hailong Cui <[email protected]>
(cherry picked from commit 77f29f6)
Signed-off-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
  • Loading branch information
github-actions[bot] committed Sep 6, 2023
1 parent e46964a commit 8528b84
Showing 1 changed file with 11 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -620,7 +620,17 @@ class IndexManagementPlugin : JobSchedulerExtension, NetworkPlugin, ActionPlugin
}

override fun getSystemIndexDescriptors(settings: Settings): Collection<SystemIndexDescriptor> {
return listOf(SystemIndexDescriptor(INDEX_MANAGEMENT_INDEX, "Index for storing index management configuration and metadata."))
return listOf(
SystemIndexDescriptor(
INDEX_MANAGEMENT_INDEX,
"Index for storing index management configuration and metadata."
),
SystemIndexDescriptor(
CONTROL_CENTER_INDEX,
"Index for storing notification policy of long running index operations."
),

)
}
}

Expand Down

0 comments on commit 8528b84

Please sign in to comment.