# HG changeset patch # User Martin Bornhold # Date 2016-10-04 13:09:41 # Node ID e02db59fe6c80e9dd456f34d9bb916d0537b1c6b # Parent a8b915c83a25068559c70475b92fefac1073f789 tests: Use http backend in rhodecode test ini file. diff --git a/rhodecode/tests/rhodecode.ini b/rhodecode/tests/rhodecode.ini --- a/rhodecode/tests/rhodecode.ini +++ b/rhodecode/tests/rhodecode.ini @@ -577,18 +577,18 @@ vcs.server = localhost:9901 ## Available protocols are: ## `pyro4` - using pyro4 server ## `http` - using http-rpc backend -vcs.server.protocol = pyro4 +vcs.server.protocol = http ## Push/Pull operations protocol, available options are: ## `pyro4` - using pyro4 server ## `rhodecode.lib.middleware.utils.scm_app_http` - Http based, recommended ## `vcsserver.scm_app` - internal app (EE only) -vcs.scm_app_implementation = pyro4 +vcs.scm_app_implementation = http ## Push/Pull operations hooks protocol, available options are: ## `pyro4` - using pyro4 server ## `http` - using http-rpc backend -vcs.hooks.protocol = pyro4 +vcs.hooks.protocol = http vcs.server.log_level = debug ## Start VCSServer with this instance as a subprocess, usefull for development