diff --git a/providers/standard/docs/sensors/datetime.rst b/providers/standard/docs/sensors/datetime.rst index 0aed4ee014a5c..2a45ecb6bd869 100644 --- a/providers/standard/docs/sensors/datetime.rst +++ b/providers/standard/docs/sensors/datetime.rst @@ -24,28 +24,13 @@ TimeDeltaSensor Use the :class:`~airflow.providers.standard.sensors.time_delta.TimeDeltaSensor` to end sensing after specific time. - .. exampleinclude:: /../src/airflow/providers/standard/example_dags/example_sensors.py :language: python :dedent: 4 :start-after: [START example_time_delta_sensor] :end-before: [END example_time_delta_sensor] - -.. _howto/operator:TimeDeltaSensorAsync: - -TimeDeltaSensorAsync -==================== - -Use the :class:`~airflow.providers.standard.sensors.time_delta.TimeDeltaSensorAsync` to end sensing after specific time. -It is an async version of the operator and requires Triggerer to run. - - -.. exampleinclude:: /../src/airflow/providers/standard/example_dags/example_sensors.py - :language: python - :dedent: 4 - :start-after: [START example_time_delta_sensor_async] - :end-before: [END example_time_delta_sensor_async] +To run the sensor in deferrable mode, set ``deferrable=True``. See :ref:`deferring/writing` for more information.