dstandish commented on code in PR #40847:
URL: https://github.com/apache/airflow/pull/40847#discussion_r1681831912
##########
airflow/models/renderedtifields.py:
##########
@@ -153,6 +154,23 @@ def _redact(self):
for field, rendered in self.rendered_fields.items():
self.rendered_fields[field] = redact(rendered, field)
+ @classmethod
+ @internal_api_call
+ @provide_session
+ def update_runtime_evaluated_template_fields(
+ cls, ti: TaskInstance, session: Session = NEW_SESSION
+ ) -> None:
+ """Update rendered task instance fields for cases where runtime
evaluated, not templated."""
Review Comment:
can we make it "private" by either adding `:meta private:` or leading
underscore?
(i think best to avoid making _anything_ public unless really necessary)
--
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]