tests: Specify protocol in case of pyro4.
Previously this was the default value of the argument.
This commit is contained in:
parent
27139beaa3
commit
d3fd4efbe1
1 changed files with 2 additions and 1 deletions
|
|
@ -218,7 +218,8 @@ class Pyro4VCSServer(VCSServer):
|
|||
self._args = args
|
||||
|
||||
def wait_until_ready(self, timeout=30):
|
||||
remote_server = vcs.create_vcsserver_proxy(self.server_and_port)
|
||||
remote_server = vcs.create_vcsserver_proxy(
|
||||
self.server_and_port, 'pyro4')
|
||||
start = time.time()
|
||||
with remote_server:
|
||||
while time.time() - start < timeout:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue