dirrao commented on code in PR #36529:
URL: https://github.com/apache/airflow/pull/36529#discussion_r1440167500
##########
airflow/providers/microsoft/azure/operators/container_instances.py:
##########
@@ -151,7 +151,7 @@ def __init__(
self.ci_conn_id = ci_conn_id
self.resource_group = resource_group
- self.name = self._check_name(name)
+ self.name = name
Review Comment:
Looks like still it doesn't work. Need to make change in the execute
function as follows.
self.name = self._check_name(self.name)
--
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]