Show More
@@ -428,10 +428,10 b' def _sanitize_vcs_settings(settings):' | |||
|
428 | 428 | _int_setting(settings, 'vcs.connection_timeout', 3600) |
|
429 | 429 | |
|
430 | 430 | # Support legacy values of vcs.scm_app_implementation. Legacy |
|
431 | # configurations may use 'rhodecode.lib.middleware.utils.scm_app_http' | |
|
432 | # which is now mapped to 'http'. | |
|
431 | # configurations may use 'rhodecode.lib.middleware.utils.scm_app_http', or | |
|
432 | # disabled since 4.13 'vcsserver.scm_app' which is now mapped to 'http'. | |
|
433 | 433 | scm_app_impl = settings['vcs.scm_app_implementation'] |
|
434 |
if scm_app_impl |
|
|
434 | if scm_app_impl in ['rhodecode.lib.middleware.utils.scm_app_http', 'vcsserver.scm_app']: | |
|
435 | 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