feluelle commented on a change in pull request #7900: Convert properties with
query to real methods
URL: https://github.com/apache/airflow/pull/7900#discussion_r399342406
##########
File path: airflow/ti_deps/deps/dag_unpaused_dep.py
##########
@@ -29,6 +29,6 @@ class DagUnpausedDep(BaseTIDep):
@provide_session
def _get_dep_statuses(self, ti, session, dep_context):
- if ti.task.dag.is_paused:
+ if ti.task.dag.get_is_paused():
Review comment:
```suggestion
if ti.task.dag.get_is_paused(session):
```
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]
With regards,
Apache Git Services