# HG changeset patch # User Simon Farnsworth # Date 2017-03-06 11:25:09 # Node ID 764f4581d1f3518a3c00a3b190f5b7d40b5fbf2c # Parent 3af9a9628ecf189a2784c6d7629ba8166fb4895e sshpeer: set a blockedtag when starting ssh So that the data is readable. diff --git a/mercurial/sshpeer.py b/mercurial/sshpeer.py --- a/mercurial/sshpeer.py +++ b/mercurial/sshpeer.py @@ -150,7 +150,7 @@ class sshpeer(wireproto.wirepeer): util.shellquote("%s init %s" % (_serverquote(remotecmd), _serverquote(self.path)))) ui.debug('running %s\n' % cmd) - res = ui.system(cmd) + res = ui.system(cmd, blockedtag='sshpeer') if res != 0: self._abort(error.RepoError(_("could not create remote repo")))