Skip to content

Commit

Permalink
update-station-info
Browse files Browse the repository at this point in the history
  • Loading branch information
maaikelimper committed Jan 24, 2025
1 parent 385357c commit 5105b70
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions wis2box_api/plugins/process/station_info.py
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ def execute(self, data):
'filter': [
{
'range': {
'properties.resultTime.raw': {'gte': date_offset}
'properties.reportTime.raw': {'gte': date_offset}
}
}
]
Expand All @@ -215,7 +215,7 @@ def execute(self, data):
},
'aggs': {
'count': {
'terms': {'field': 'reportId.raw', 'size': 64000}
'terms': {'field': 'properties.reportId.raw', 'size': 64000} # noqa
}
}
}
Expand Down

0 comments on commit 5105b70

Please sign in to comment.