Skip to content

Commit

Permalink
fix(TimeSensorAsync): use DAG timezone (#33406)
Browse files Browse the repository at this point in the history
* fix(TimeSensorAsync): use DAG timezone

Fixes: #33256
(cherry picked from commit 6c50ef5)
  • Loading branch information
SapphicCode authored and ephraimbuddy committed Oct 30, 2023
1 parent 9872d39 commit d449d9f
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 1 deletion.
2 changes: 1 addition & 1 deletion airflow/sensors/time_sensor.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ def __init__(self, *, target_time, **kwargs):
self.target_time = target_time

aware_time = timezone.coerce_datetime(
datetime.datetime.combine(datetime.datetime.today(), self.target_time)
datetime.datetime.combine(datetime.datetime.today(), self.target_time, self.dag.timezone)
)

self.target_datetime = timezone.convert_to_utc(aware_time)
Expand Down
13 changes: 13 additions & 0 deletions tests/sensors/test_time_sensor.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
import pendulum
import pytest
import time_machine
from pendulum.tz.timezone import UTC

from airflow.exceptions import TaskDeferred
from airflow.models.dag import DAG
Expand Down Expand Up @@ -73,3 +74,15 @@ def test_target_time_aware(self):
op = TimeSensorAsync(task_id="test", target_time=aware_time)
assert hasattr(op.target_datetime.tzinfo, "offset")
assert op.target_datetime.tzinfo.offset == 0

def test_target_time_naive_dag_timezone(self):
"""
Tests that naive target_time gets converted correctly using the DAG's timezone.
"""
with DAG(
"test_target_time_naive_dag_timezone",
start_date=pendulum.datetime(2020, 1, 1, 0, 0, tz=DEFAULT_TIMEZONE),
):
op = TimeSensorAsync(task_id="test", target_time=pendulum.time(9, 0))
assert op.target_datetime.time() == pendulum.time(1, 0)
assert op.target_datetime.tzinfo == UTC

0 comments on commit d449d9f

Please sign in to comment.