uranusjr commented on code in PR #34913:
URL: https://github.com/apache/airflow/pull/34913#discussion_r1363642783
##########
airflow/api_connexion/openapi/v1.yaml:
##########
@@ -3813,6 +3813,24 @@ components:
type: string
description: The plugin source
nullable: true
+ ti_deps:
+ type: array
+ items:
+ type: string
+ nullable: true
Review Comment:
I think _without_ nullable would just work, an empty list is allowed by
default. To disallow an empty array you’d need to set something else
(`minLength: 1` or something, don’t remember)
##########
airflow/api_connexion/openapi/v1.yaml:
##########
@@ -3813,6 +3813,24 @@ components:
type: string
description: The plugin source
nullable: true
+ ti_deps:
+ type: array
+ items:
+ type: string
+ nullable: true
Review Comment:
I think _without_ nullable would just work, an empty list is allowed by
default. To disallow an empty array you’d need to set something else
(`minLength: 1` or something, don’t remember)
--
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]