Reflow create_indexes comments flagged by Copilot

The line wrap placed "#169" directly after the comment marker, so the
raw source read "# #169;". Reword so the issue reference stays on one
line.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
This commit is contained in:
Sean Whalen
2026-07-21 22:06:22 -04:00
co-authored by Claude Fable 5
parent 0ffc804ea0
commit 8219f44659
2 changed files with 4 additions and 4 deletions
+2 -2
View File
@@ -471,8 +471,8 @@ def create_indexes(names: list[str], settings: dict[str, Any] | None = None):
# Deliberately no Index.document() registration: Kibana/OpenSearch
# Dashboards/Grafana cannot terms-aggregate fields inside a
# `nested` mapping, so the dynamic `object` mapping produced by a
# bare create is load-bearing for the shipped dashboards (issue
# #169; see the *_combined fields on _AggregateReportDoc).
# bare create is load-bearing for the shipped dashboards. See
# issue #169 and the *_combined fields on _AggregateReportDoc.
if not index.exists():
logger.debug("Creating Elasticsearch index: {0}".format(name))
if effective_settings:
+2 -2
View File
@@ -388,8 +388,8 @@ def create_indexes(names: list[str], settings: dict[str, Any] | None = None):
# Deliberately no Index.document() registration: Kibana/OpenSearch
# Dashboards/Grafana cannot terms-aggregate fields inside a
# `nested` mapping, so the dynamic `object` mapping produced by a
# bare create is load-bearing for the shipped dashboards (issue
# #169; see the *_combined fields on _AggregateReportDoc).
# bare create is load-bearing for the shipped dashboards. See
# issue #169 and the *_combined fields on _AggregateReportDoc.
if not index.exists():
logger.debug("Creating OpenSearch index: {0}".format(name))
if settings is None: