mik-laj commented on pull request #8607:
URL: https://github.com/apache/airflow/pull/8607#issuecomment-620588384


   I think this is a more common problem. Would you like to look at other calls 
to conf.set?
   ```
   14:54 $ grep -R -i 'conf.set' tests/
   tests//test_configuration.py:        conf.set('core', 'percent', 
'with%%inside')
   tests//test_configuration.py:            conf.set('celery', 
'celeryd_concurrency', '99')
   tests//test_configuration.py:            conf.set('core', 'logging_level', 
'VALUE')
   tests//test_configuration.py:        conf.set('celery', 
'celery_result_backend_cmd', '/bin/echo 99')
   tests//security/test_kerberos.py:        conf.set("kerberos", "keytab",
   tests//test_utils/config.py:            conf.set(section, key, value)
   tests//test_utils/config.py:                conf.set(section, key, value)
   tests//providers/amazon/aws/operators/test_s3_to_sftp.py:        
conf.set("core", "enable_xcom_pickling", "True")
   tests//utils/test_task_handler_with_custom_formatter.py:        
conf.set('logging', 'task_log_prefix_template', "{{ti.dag_id}}-{{ti.task_id}}")
   tests//utils/test_email.py:        conf.set('smtp', 'SMTP_SSL', 'False')
   tests//utils/test_dag_processing.py:        conf.set(
   tests//utils/test_dag_processing.py:        conf.set('logging', 
'logging_config_class', '')
   tests//models/test_taskinstance.py:        conf.set('email', 
'subject_template', '/subject/path')
   tests//models/test_taskinstance.py:        conf.set('email', 
'html_content_template', '/html_content/path')
   tests//models/test_cleartasks.py:        conf.set("core", 
"enable_xcom_pickling", "False")
   tests//models/test_cleartasks.py:        conf.set("core", 
"enable_xcom_pickling", "True")
   tests//models/test_cleartasks.py:        conf.set("core", 
"xcom_enable_pickling", "False")
   tests//models/test_cleartasks.py:        conf.set("core", 
"xcom_enable_pickling", "True")
   tests//www/test_views.py:        conf.set("webserver", "base_url", 
"http://localhost/test";)
   tests//www/test_views.py:        conf.set("webserver", 
"show_recent_stats_for_completed_runs", "False")
   tests//www/test_views.py:        conf.set('logging', 'logging_config_class', 
'airflow_local_settings.LOGGING_CONFIG')
   tests//www/test_views.py:        conf.set('logging', 'logging_config_class', 
'')
   tests//www/api/experimental/test_kerberos_endpoints.py:        
conf.set("api",
   tests//www/api/experimental/test_kerberos_endpoints.py:        
conf.set("kerberos",
   tests//executors/test_dask_executor.py:            conf.set('dask', 
'tls_ca', get_cert('tls-ca-cert.pem'))
   tests//executors/test_dask_executor.py:            conf.set('dask', 
'tls_cert', get_cert('tls-key-cert.pem'))
   tests//executors/test_dask_executor.py:            conf.set('dask', 
'tls_key', get_cert('tls-key.pem'))
   tests//executors/test_dask_executor.py:                conf.set('dask', 
'tls_ca', '')
   tests//executors/test_dask_executor.py:                conf.set('dask', 
'tls_key', '')
   tests//executors/test_dask_executor.py:                conf.set('dask', 
'tls_cert', '')
   tests//jobs/test_scheduler_job.py:        conf.set('core', 'load_examples', 
'false')
   tests//jobs/test_scheduler_job.py:            conf.set('core', 
'load_examples', cls.old_val)
   tests//jobs/test_scheduler_job.py:        conf.set('core', 'load_examples', 
'false')
   tests//jobs/test_scheduler_job.py:            conf.set('core', 
'load_examples', cls.old_val)
   tests//test_logging_config.py:        conf.set(
   tests//test_logging_config.py:        conf.set('logging', 
'logging_config_class', '')
   ```


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

For queries about this service, please contact Infrastructure at:
[email protected]


Reply via email to