Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions sqlmesh/core/context.py
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,6 @@
from sqlmesh.utils.dag import DAG
from sqlmesh.utils.date import (
TimeLike,
now_ds,
to_timestamp,
format_tz_datetime,
now_timestamp,
Expand Down Expand Up @@ -1001,7 +1000,7 @@ def render(
Returns:
The rendered expression.
"""
execution_time = execution_time or now_ds()
execution_time = execution_time or now()

model = self.get_model(model_or_snapshot, raise_if_missing=True)

Expand Down