potiuk commented on PR #35546:
URL: https://github.com/apache/airflow/pull/35546#issuecomment-1877903833

   Just to add to it. It's actually rather easy to update template_field in 
your Dag - you do not need to recursively update BaseOperator.
   
   ```python
   
   from .... import AnyOperator
   
   AnyOperator.template_fields = ('email',)
   
   task = AnyOperator(....) 
   ```
   
   That one should do the job.


-- 
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]

Reply via email to