##// END OF EJS Templates
backend: don't support vcsserver.scm_app anymore
marcink -
r2958:816d198e default
parent child Browse files
Show More
@@ -428,10 +428,10 b' def _sanitize_vcs_settings(settings):'
428 _int_setting(settings, 'vcs.connection_timeout', 3600)
428 _int_setting(settings, 'vcs.connection_timeout', 3600)
429
429
430 # Support legacy values of vcs.scm_app_implementation. Legacy
430 # Support legacy values of vcs.scm_app_implementation. Legacy
431 # configurations may use 'rhodecode.lib.middleware.utils.scm_app_http'
431 # configurations may use 'rhodecode.lib.middleware.utils.scm_app_http', or
432 # which is now mapped to 'http'.
432 # disabled since 4.13 'vcsserver.scm_app' which is now mapped to 'http'.
433 scm_app_impl = settings['vcs.scm_app_implementation']
433 scm_app_impl = settings['vcs.scm_app_implementation']
434 if scm_app_impl == 'rhodecode.lib.middleware.utils.scm_app_http':
434 if scm_app_impl in ['rhodecode.lib.middleware.utils.scm_app_http', 'vcsserver.scm_app']:
435 settings['vcs.scm_app_implementation'] = 'http'
435 settings['vcs.scm_app_implementation'] = 'http'
436
436
437
437
General Comments 0
You need to be logged in to leave comments. Login now