Skip to content

Commit

Permalink
FIX: Fix for arm_elastic_search, missing space causing search issues. (
Browse files Browse the repository at this point in the history
  • Loading branch information
zssherman authored Nov 28, 2023
1 parent 402389d commit bcea2be
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion act/utils/data_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -1234,7 +1234,7 @@ def arm_site_location_search(site_code='sgp', facility_code=None):
if facility_code is None:
query = "site_code:" + site_code
else:
query = "site_code:" + site_code + "AND facility_code:" + facility_code
query = "site_code:" + site_code + " AND facility_code:" + facility_code

# Search aggregation for elastic search
json_data = {
Expand Down

0 comments on commit bcea2be

Please sign in to comment.