uranusjr commented on code in PR #24496:
URL: https://github.com/apache/airflow/pull/24496#discussion_r903680341
##########
airflow/config_templates/default_celery.py:
##########
@@ -36,6 +36,12 @@ def _broker_supports_visibility_timeout(url):
if _broker_supports_visibility_timeout(broker_url):
broker_transport_options['visibility_timeout'] = 21600
+if conf.has_option("celery", 'RESULT_BACKEND'):
+ result_backend = str(conf.get('celery', 'RESULT_BACKEND'))
Review Comment:
```suggestion
result_backend = conf.get_mandatory_value('celery', 'RESULT_BACKEND')
```
--
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]