ghostp13409 commented on code in PR #34894:
URL: https://github.com/apache/airflow/pull/34894#discussion_r1357751380
##########
airflow/providers/apache/spark/operators/spark_submit.py:
##########
@@ -160,6 +160,11 @@ def on_kill(self) -> None:
self._hook = self._get_hook()
self._hook.on_kill()
+ def property_files(self) -> None:
+ if self.hook is None:
+ self._hook = self._get_hook()
+ self._hook.property_files()
+
def _get_hook(self) -> SparkSubmitHook:
Review Comment:
Okay will try to add that as well
--
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]