Skip to content

Commit 1dbcd9d

Browse files
committed
Issue deprecation warning for plugins registering ti_deps
This is removed in Airflow3 via #45713
1 parent 04d0381 commit 1dbcd9d

File tree

3 files changed

+27
-0
lines changed

3 files changed

+27
-0
lines changed

airflow/plugins_manager.py

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@
2727
import os
2828
import sys
2929
import types
30+
import warnings
3031
from pathlib import Path
3132
from typing import TYPE_CHECKING, Any, Iterable
3233

@@ -431,6 +432,17 @@ def initialize_ti_deps_plugins():
431432
registered_ti_dep_classes = {}
432433

433434
for plugin in plugins:
435+
if not plugin.ti_deps:
436+
continue
437+
438+
from airflow.exceptions import RemovedInAirflow3Warning
439+
440+
warnings.warn(
441+
"Using custom `ti_deps` on operators has been removed in Airflow 3.0",
442+
RemovedInAirflow3Warning,
443+
stacklevel=1,
444+
)
445+
434446
registered_ti_dep_classes.update(
435447
{qualname(ti_dep.__class__): ti_dep.__class__ for ti_dep in plugin.ti_deps}
436448
)

tests/plugins/test_plugins_manager.py

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@
2828

2929
import pytest
3030

31+
from airflow.exceptions import RemovedInAirflow3Warning
3132
from airflow.hooks.base import BaseHook
3233
from airflow.listeners.listener import get_listener_manager
3334
from airflow.plugins_manager import AirflowPlugin
@@ -270,6 +271,17 @@ class AirflowAdminMenuLinksPlugin(AirflowPlugin):
270271
),
271272
]
272273

274+
def test_deprecate_ti_deps(self):
275+
class DeprecatedTIDeps(AirflowPlugin):
276+
name = "ti_deps"
277+
278+
ti_deps = [mock.MagicMock()]
279+
280+
with mock_plugin_manager(plugins=[DeprecatedTIDeps()]), pytest.warns(RemovedInAirflow3Warning):
281+
from airflow import plugins_manager
282+
283+
plugins_manager.initialize_ti_deps_plugins()
284+
273285
def test_should_not_warning_about_fab_plugins(self, caplog):
274286
class AirflowAdminViewsPlugin(AirflowPlugin):
275287
name = "test_admin_views_plugin"

tests/serialization/test_dag_serialization.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -539,6 +539,7 @@ def sorted_serialized_dag(dag_dict: dict):
539539
return actual, expected
540540

541541
@pytest.mark.db_test
542+
@pytest.mark.filterwarnings("ignore::airflow.exceptions.RemovedInAirflow3Warning")
542543
def test_deserialization_across_process(self):
543544
"""A serialized DAG can be deserialized in another process."""
544545

@@ -1596,6 +1597,7 @@ def test_deps_sorted(self):
15961597
"airflow.ti_deps.deps.trigger_rule_dep.TriggerRuleDep",
15971598
]
15981599

1600+
@pytest.mark.filterwarnings("ignore::airflow.exceptions.RemovedInAirflow3Warning")
15991601
def test_error_on_unregistered_ti_dep_serialization(self):
16001602
# trigger rule not registered through the plugin system will not be serialized
16011603
class DummyTriggerRule(BaseTIDep):
@@ -1634,6 +1636,7 @@ def test_error_on_unregistered_ti_dep_deserialization(self):
16341636
SerializedBaseOperator.deserialize_operator(serialize_op)
16351637

16361638
@pytest.mark.db_test
1639+
@pytest.mark.filterwarnings("ignore::airflow.exceptions.RemovedInAirflow3Warning")
16371640
def test_serialize_and_deserialize_custom_ti_deps(self):
16381641
from test_plugin import CustomTestTriggerRule
16391642

0 commit comments

Comments
 (0)