bugraoz93 commented on code in PR #66852:
URL: https://github.com/apache/airflow/pull/66852#discussion_r3398158368
##########
airflow-ctl/src/airflowctl/api/client.py:
##########
@@ -473,6 +475,18 @@ def plugins(self):
"""Operations related to plugins."""
return PluginsOperations(self)
+ @lru_cache() # type: ignore[prop-decorator]
+ @property
+ def tasks(self):
+ """Operations related to tasks."""
+ return TasksOperations(self)
+
+ @lru_cache() # type: ignore[prop-decorator]
Review Comment:
This needs to be gone because we removed other parts and it should stay as
tasks
--
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.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]