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 2022/08/04 15:24:14 UTC

[airflow] branch main updated (44a1cdc1e1 -> 7e3d2350db)

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

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


    from 44a1cdc1e1 Correctly render `results_parser_callable` param in Qubole docs (#25514)
     add 7e3d2350db Remove Smart Sensors (#25507)

No new revisions were added by this update.

Summary of changes:
 airflow/api_connexion/openapi/v1.yaml              |   5 +-
 airflow/config_templates/config.yml                |  33 -
 airflow/config_templates/default_airflow.cfg       |  15 -
 airflow/dag_processing/processor.py                |   2 +-
 airflow/exceptions.py                              |   8 -
 airflow/jobs/scheduler_job.py                      |  15 -
 ...ensor.py => 0115_2_4_0_remove_smart_sensors.py} |  38 +-
 airflow/models/__init__.py                         |   2 -
 airflow/models/baseoperator.py                     |   4 -
 airflow/models/dagbag.py                           |   6 -
 airflow/models/sensorinstance.py                   | 185 -----
 airflow/models/taskinstance.py                     |  33 -
 .../apache/hive/sensors/metastore_partition.py     |   1 -
 .../apache/hive/sensors/named_hive_partition.py    |  10 -
 airflow/sensors/base.py                            |  89 ---
 airflow/sensors/smart_sensor.py                    | 757 ---------------------
 airflow/smart_sensor_dags/__init__.py              |  17 -
 airflow/smart_sensor_dags/smart_sensor_group.py    |  56 --
 airflow/utils/file.py                              |   9 +-
 airflow/utils/log/file_processor_handler.py        |   5 +-
 airflow/utils/state.py                             |  16 +-
 airflow/www/static/js/graph.js                     |   2 +-
 airflow/www/static/js/types/api-generated.ts       |   5 +-
 airflow/www/static/js/types/index.ts               |   1 -
 airflow/www/static/js/utils/index.ts               |   1 -
 airflow/www/utils.py                               |   1 -
 docs/apache-airflow/concepts/deferring.rst         |   6 -
 docs/apache-airflow/concepts/index.rst             |   1 -
 docs/apache-airflow/concepts/sensors.rst           |   7 +-
 docs/apache-airflow/concepts/smart-sensors.rst     | 108 ---
 docs/apache-airflow/concepts/tasks.rst             |   1 -
 docs/apache-airflow/logging-monitoring/metrics.rst |   5 -
 docs/apache-airflow/migrations-ref.rst             |   4 +-
 docs/apache-airflow/operators-and-hooks-ref.rst    |   3 -
 docs/apache-airflow/redirects.txt                  |   1 -
 newsfragments/25507.significant.rst                |   3 +
 tests/core/test_config_templates.py                |   1 -
 tests/jobs/test_scheduler_job.py                   |  15 -
 tests/models/test_dagbag.py                        |   8 +-
 tests/models/test_sensorinstance.py                |  44 --
 tests/models/test_taskinstance.py                  |   2 +-
 tests/sensors/test_smart_sensor_operator.py        | 335 ---------
 tests/www/views/test_views_blocked.py              |   2 +-
 tests/www/views/test_views_home.py                 |   2 +-
 44 files changed, 45 insertions(+), 1819 deletions(-)
 copy airflow/migrations/versions/{0065_2_0_0_update_schema_for_smart_sensor.py => 0115_2_4_0_remove_smart_sensors.py} (81%)
 delete mode 100644 airflow/models/sensorinstance.py
 delete mode 100644 airflow/sensors/smart_sensor.py
 delete mode 100644 airflow/smart_sensor_dags/__init__.py
 delete mode 100644 airflow/smart_sensor_dags/smart_sensor_group.py
 delete mode 100644 docs/apache-airflow/concepts/smart-sensors.rst
 create mode 100644 newsfragments/25507.significant.rst
 delete mode 100644 tests/models/test_sensorinstance.py
 delete mode 100644 tests/sensors/test_smart_sensor_operator.py