Skip to content

Commit

Permalink
fix: param placement
Browse files Browse the repository at this point in the history
  • Loading branch information
dlbrittain committed Aug 11, 2022
1 parent b4c64a1 commit 0b6eb8f
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions materializationengine/celery_worker.py
Original file line number Diff line number Diff line change
Expand Up @@ -122,8 +122,9 @@ def setup_periodic_tasks(sender, **kwargs):
),
"run_lts_periodic_materialization": run_periodic_materialization.s(
days_to_expire=days_till_next_month(
datetime.datetime.utcnow(), merge_tables=merge_tables
)
datetime.datetime.utcnow(),
),
merge_tables=merge_tables,
),
"run_periodic_database_update": run_periodic_database_update.s(),
"remove_expired_databases": remove_expired_databases.s(
Expand Down

0 comments on commit 0b6eb8f

Please sign in to comment.