Lee-W commented on code in PR #68702:
URL: https://github.com/apache/airflow/pull/68702#discussion_r3453581031
##########
airflow-core/src/airflow/api_fastapi/core_api/security.py:
##########
@@ -823,6 +823,15 @@ def inner(
continue
entity_methods.append((entity_dag_id, "PUT"))
+ partition_selectors_present = (
+ body.partition_key is not None
+ or body.partition_date_start is not None
+ or body.partition_date_end is not None
+ )
Review Comment:
made it a `has_partition_selectors` in the shared mixin
--
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]