Skip to content

Commit

Permalink
test(async-migrations): Change timestamp upper bound to account for i…
Browse files Browse the repository at this point in the history
…t being 2025 (#27234)
  • Loading branch information
tkaemming authored Jan 3, 2025
1 parent 8599213 commit f76be70
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
from datetime import datetime
from functools import cached_property
from typing import Union

Expand Down Expand Up @@ -104,7 +105,7 @@ class Migration(AsyncMigrationDefinition):
str,
),
"TIMESTAMP_UPPER_BOUND": (
"2025-01-01",
f"{datetime.now().year + 1}-01-01",
"Timestamp upper bound for events to backfill",
str,
),
Expand Down

0 comments on commit f76be70

Please sign in to comment.