okirialbert commented on code in PR #37665:
URL: https://github.com/apache/airflow/pull/37665#discussion_r1501334769
##########
airflow/providers/databricks/operators/databricks.py:
##########
@@ -287,8 +287,8 @@ def __init__(
self.json["git_source"] = git_source
if access_control_list is not None:
self.json["access_control_list"] = access_control_list
-
- self.json = normalise_json_content(self.json)
+ if self.json:
Review Comment:
True. It `escapes` the init checks. Using the `normalize_json_content`
function in the execute function as documented raises errors.
--
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]