Skip to content

Commit

Permalink
chore: Add .ql index to skip list
Browse files Browse the repository at this point in the history
This commit adds the ".ql" index to the skip list in the IndexConfigModel class. This change was made to ensure that the ".ql" index is skipped during indexing operations in the Wazuh indexer schema.
  • Loading branch information
taylorwalton committed Aug 8, 2024
1 parent 7c29832 commit bfa8677
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions backend/app/connectors/wazuh_indexer/schema/indices.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ class IndexConfigModel(BaseModel):
".task": True,
"wazuh-states-vulnerabilities": True,
".plugins": True,
".ql": True,
},
description="A dictionary containing index names to be skipped and their skip status.",
)
Expand Down

0 comments on commit bfa8677

Please sign in to comment.