mik-laj commented on a change in pull request #15146:
URL: https://github.com/apache/airflow/pull/15146#discussion_r606654260
##########
File path: airflow/models/connection.py
##########
@@ -137,7 +137,25 @@ def __init__( # pylint: disable=too-many-arguments
self.password = password
self.schema = schema
self.port = port
- self.extra = extra
+ self.extra = self.validate_extra(extra)
+
+ @staticmethod
+ def validate_extra(extra: str):
Review comment:
`None` is also the correct value.
--
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]