msumit commented on a change in pull request #17100:
URL: https://github.com/apache/airflow/pull/17100#discussion_r684743458
##########
File path: airflow/models/taskinstance.py
##########
@@ -1522,7 +1523,7 @@ def is_eligible_to_retry(self):
return self.task.retries and self.try_number <= self.max_tries
@provide_session
- def get_template_context(self, session=None) -> Context:
+ def get_template_context(self, ignore_param_exceptions=True, session=None)
-> Context:
Review comment:
`get_template_context` is being called from many places, but we want to
raise exceptions from a couple of places only, hence keeping it to ignore by
default.
--
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]