Skip to content

Commit

Permalink
hotfix query to GRQ user rules (#73)
Browse files Browse the repository at this point in the history
* hotfix query to GRQ user rules

* bump version
  • Loading branch information
pymonger authored Mar 15, 2021
1 parent 47dc38b commit 326dd42
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion sdscli/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@
from __future__ import division
from __future__ import absolute_import

__version__ = "1.0.9"
__version__ = "1.0.10"
__url__ = "https://github.com/sdskit/sdscli"
__description__ = "Command line interface for SDSKit"
2 changes: 1 addition & 1 deletion sdscli/adapters/hysds/rules.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ def export(args):
rules['mozart'] = [rule['_source'] for rule in mozart_rules]
logger.debug('%d mozart user rules found' % len(mozart_rules))

grq_rules = mozart_es.query(index=USER_RULES_MOZART)
grq_rules = mozart_es.query(index=USER_RULES_GRQ)
rules['grq'] = [rule['_source'] for rule in grq_rules]
logger.debug('%d grq user rules found' % len(grq_rules))

Expand Down

0 comments on commit 326dd42

Please sign in to comment.