Skip to content

Commit

Permalink
make control center index as system index
Browse files Browse the repository at this point in the history
Signed-off-by: Hailong Cui <[email protected]>
  • Loading branch information
Hailong-am committed Sep 6, 2023
1 parent 136fa87 commit ce6f1ba
Showing 1 changed file with 7 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -615,7 +615,13 @@ 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 ce6f1ba

Please sign in to comment.