Skip to content

Commit

Permalink
fix e2e
Browse files Browse the repository at this point in the history
  • Loading branch information
petrjasek committed Jul 16, 2024
1 parent 70ccfe2 commit 72327a5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions server/planning/search/queries/events.py
Original file line number Diff line number Diff line change
Expand Up @@ -278,12 +278,12 @@ def search_date_range(params: Dict[str, Any], query: elastic.ElasticQuery):
elastic.date_range(
elastic.ElasticRangeParams(
field="dates.start",
gte=end_date,
gte=start_date,
time_zone=time_zone,
),
),
elastic.date_range(
elastic.ElasticRangeParams(field="dates.end", lte=start_date, time_zone=time_zone)
elastic.ElasticRangeParams(field="dates.end", lte=end_date, time_zone=time_zone)
),
]
)
Expand Down

0 comments on commit 72327a5

Please sign in to comment.