##// END OF EJS Templates
httprepo: normalize output from unbundle with ssh...
Sune Foldager -
r10544:2e1a9b81 stable
parent child Browse files
Show More
@@ -239,7 +239,8 b' class httprepository(repo.repository):'
239 239 except ValueError, err:
240 240 raise error.ResponseError(
241 241 _('push failed (unexpected response):'), resp)
242 self.ui.write(output)
242 for l in output.splitlines(True):
243 self.ui.status(_('remote: '), l)
243 244 return ret
244 245 except socket.error, err:
245 246 if err[0] in (errno.ECONNRESET, errno.EPIPE):
@@ -4,7 +4,7 b' 1 files updated, 0 files merged, 0 files'
4 4 % expect ssl error
5 5 pushing to http://localhost:$HGPORT/
6 6 searching for changes
7 ssl required
7 remote: ssl required
8 8 % serve errors
9 9 % expect authorization error
10 10 abort: authorization failed
@@ -19,10 +19,10 b' searching for changes'
19 19 % expect success
20 20 pushing to http://localhost:$HGPORT/
21 21 searching for changes
22 adding changesets
23 adding manifests
24 adding file changes
25 added 1 changesets with 1 changes to 1 files
22 remote: adding changesets
23 remote: adding manifests
24 remote: adding file changes
25 remote: added 1 changesets with 1 changes to 1 files
26 26 % serve errors
27 27 changegroup hook: HG_NODE=ba677d0156c1196c1a699fa53f390dcfc3ce3872 HG_SOURCE=serve HG_URL=remote:http
28 28 rolling back last transaction
General Comments 0
You need to be logged in to leave comments. Login now