amoghrajesh commented on code in PR #37214:
URL: https://github.com/apache/airflow/pull/37214#discussion_r1481199290
##########
airflow/providers/mongo/hooks/mongo.py:
##########
@@ -75,6 +74,10 @@ def __init__(self, mongo_conn_id: str = default_conn_name,
*args, **kwargs) -> N
self.client: MongoClient | None = None
self.uri = self._create_uri()
+ self.allow_insecure = True
+ if self.extras.get("ssl", False):
Review Comment:
Should I integrate it here or take it in a followup? Addressing a
vulnerability here, so planning to keep the solution scoped only to solve the
vulnerability
--
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]