Skip to content

Commit

Permalink
Merge branch 'master' into berg_cgap_autodeploy
Browse files Browse the repository at this point in the history
  • Loading branch information
Eric Berg committed Jun 26, 2020
2 parents dadb28c + 11c9ff3 commit c7c218d
Show file tree
Hide file tree
Showing 4 changed files with 56 additions and 50 deletions.
4 changes: 2 additions & 2 deletions chalicelib/check_setup.json
Original file line number Diff line number Diff line change
Expand Up @@ -1390,11 +1390,11 @@
"schedule": {
"hourly_checks": {
"cgap": {
"kwargs": {"primary": true},
"kwargs": {"primary": true, "queue_action": "prod"},
"dependencies": []
},
"cgapwolf": {
"kwargs": {"primary": true},
"kwargs": {"primary": true, "queue_action": "prod"},
"dependencies": []
}
}
Expand Down
3 changes: 2 additions & 1 deletion chalicelib/es_connection.py
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,8 @@ def get_result_history(self, prefix, start, limit):
{'term': {'_id': prefix + '/latest.json'}}
],
'filter': {
'term': {'name': prefix}
# use MATCH so our 'prefix' is analyzed like the source field 'name', see mapping
'match': {'name': prefix}
}
}
}
Expand Down
97 changes: 51 additions & 46 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "foursight"
version = "0.11.8"
description = "Serverless Chalice Application for Monitoring"
authors = ["4DN Team <william_ronchetti@hms.harvard.edu>"]
authors = ["4DN-DCIC Team <support@4dnucleome.org>"]
license = "MIT"
packages = [
{ include = "chalicelib" }
Expand Down

0 comments on commit c7c218d

Please sign in to comment.