Skip to content

Commit

Permalink
query_es_dsl: allow ":" in list values
Browse files Browse the repository at this point in the history
Change-Id: Ib7579d12e3f2a40ccac93a7543df258ee3fc2d17
  • Loading branch information
ylamgarchal committed Sep 26, 2024
1 parent 497e838 commit 1b9bcb0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dci/analytics/query_es_dsl.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

_field = pp.Word(pp.alphanums + "_" + ".")
_value = pp.Word(pp.alphanums + "_" + "-" + "%" + "." + ":")
_word = pp.Word(pp.alphanums + "_" + "-" + "." + " ")
_word = pp.Word(pp.alphanums + "_" + "-" + "." + " " + ":")
_comma = pp.Suppress(pp.Literal(","))
_lp = pp.Suppress(pp.Literal("("))
_rp = pp.Suppress(pp.Literal(")"))
Expand Down

0 comments on commit 1b9bcb0

Please sign in to comment.