config: removed vcsserver log_level deprecated option.

This commit is contained in:
Marcin Kuzminski 2020-01-07 12:34:34 +01:00
parent 470749b9f3
commit c0c1de5d4d
3 changed files with 1 additions and 3 deletions

View file

@ -576,7 +576,6 @@ def _sanitize_vcs_settings(settings):
_string_setting(settings, 'vcs.hooks.host', '127.0.0.1')
_string_setting(settings, 'vcs.scm_app_implementation', 'http')
_string_setting(settings, 'vcs.server', '')
_string_setting(settings, 'vcs.server.log_level', 'debug')
_string_setting(settings, 'vcs.server.protocol', 'http')
_bool_setting(settings, 'startup.import_repos', 'false')
_bool_setting(settings, 'vcs.hooks.direct_calls', 'false')

View file

@ -119,7 +119,6 @@ class TestSanitizeVcsSettings(object):
('vcs.hooks.host', '127.0.0.1'),
('vcs.scm_app_implementation', 'http'),
('vcs.server', ''),
('vcs.server.log_level', 'debug'),
('vcs.server.protocol', 'http'),
]

View file

@ -496,7 +496,7 @@ vcs.scm_app_implementation = http
vcs.hooks.protocol = http
vcs.hooks.host = 127.0.0.1
vcs.server.log_level = debug
## Start VCSServer with this instance as a subprocess, Useful for development
vcs.start_server = false