romsharon98 commented on code in PR #40753:
URL: https://github.com/apache/airflow/pull/40753#discussion_r1676104979
##########
airflow/providers/apache/spark/hooks/spark_submit.py:
##########
@@ -546,15 +547,20 @@ def _process_spark_submit_log(self, itr: Iterator[Any])
-> None:
match = re.search("application[0-9_]+", line)
if match:
self._yarn_application_id = match.group(0)
- self.log.info("Identified spark driver id: %s",
self._yarn_application_id)
+ self.log.info("Identified spark application id: %s",
self._yarn_application_id)
Review Comment:
I think this change is a breaking change because users can count on this log
message, can we add it as a breaking change?
--
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]