Skip to content

Commit 0b6eb8f

Browse files
committed
fix: param placement
1 parent b4c64a1 commit 0b6eb8f

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

materializationengine/celery_worker.py

+3-2
Original file line numberDiff line numberDiff line change
@@ -122,8 +122,9 @@ def setup_periodic_tasks(sender, **kwargs):
122122
),
123123
"run_lts_periodic_materialization": run_periodic_materialization.s(
124124
days_to_expire=days_till_next_month(
125-
datetime.datetime.utcnow(), merge_tables=merge_tables
126-
)
125+
datetime.datetime.utcnow(),
126+
),
127+
merge_tables=merge_tables,
127128
),
128129
"run_periodic_database_update": run_periodic_database_update.s(),
129130
"remove_expired_databases": remove_expired_databases.s(

0 commit comments

Comments
 (0)