dabla commented on code in PR #60369:
URL: https://github.com/apache/airflow/pull/60369#discussion_r2678796404
##########
providers/microsoft/azure/src/airflow/providers/microsoft/azure/operators/powerbi.py:
##########
@@ -86,13 +86,14 @@ def __init__(
api_version: APIVersion | str | None = None,
check_interval: int = 60,
request_body: dict[str, Any] | None = None,
+ wait_for_termination: bool = True,
**kwargs,
) -> None:
super().__init__(**kwargs)
self.hook = PowerBIHook(conn_id=conn_id, proxies=proxies,
api_version=api_version, timeout=timeout)
self.dataset_id = dataset_id
self.group_id = group_id
- self.wait_for_termination = True
+ self.wait_for_termination = wait_for_termination
Review Comment:
Congratulations @shreyas-dev, looking good to me beside the remark made by
@shahar1 I think where are good nice improvement.
--
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]