You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by as...@apache.org on 2020/11/29 10:14:46 UTC

[airflow] branch master updated (8291fab -> 02d9434)

This is an automated email from the ASF dual-hosted git repository.

ash pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/airflow.git.


    from 8291fab  Ensure that tasks set to up_for_retry have an end date (#12675)
     add 02d9434  Don't use time.time() or timezone.utcnow() for duration calculations (#12353)

No new revisions were added by this update.

Summary of changes:
 CONTRIBUTING.rst                                   |  41 +++++++++
 airflow/cli/commands/webserver_command.py          |  12 +--
 airflow/jobs/scheduler_job.py                      |  52 +++++------
 airflow/models/dagbag.py                           |  91 +++++++++----------
 airflow/models/dagrun.py                           |  43 +++++----
 airflow/models/taskinstance.py                     |  73 +++++++--------
 airflow/plugins_manager.py                         |  26 +++---
 airflow/providers/amazon/aws/hooks/sagemaker.py    |   6 +-
 .../amazon/aws/sensors/sagemaker_training.py       |   2 +-
 .../providers/apache/kylin/operators/kylin_cube.py |   5 +-
 .../cloud/hooks/cloud_storage_transfer_service.py  |   4 +-
 airflow/sensors/base_sensor_operator.py            |  42 ++++++---
 airflow/sensors/smart_sensor_operator.py           |  17 ++--
 airflow/stats.py                                   | 100 +++++++++++++++++----
 airflow/utils/dag_processing.py                    |  16 ++--
 airflow/utils/orm_event_handlers.py                |   4 +-
 tests/cli/commands/test_webserver_command.py       |  18 ++--
 tests/providers/amazon/aws/hooks/test_sagemaker.py |   2 +-
 tests/sensors/test_base_sensor.py                  |  16 ++--
 19 files changed, 338 insertions(+), 232 deletions(-)