##// 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 except ValueError, err:
239 except ValueError, err:
240 raise error.ResponseError(
240 raise error.ResponseError(
241 _('push failed (unexpected response):'), resp)
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 return ret
244 return ret
244 except socket.error, err:
245 except socket.error, err:
245 if err[0] in (errno.ECONNRESET, errno.EPIPE):
246 if err[0] in (errno.ECONNRESET, errno.EPIPE):
@@ -4,7 +4,7 b' 1 files updated, 0 files merged, 0 files'
4 % expect ssl error
4 % expect ssl error
5 pushing to http://localhost:$HGPORT/
5 pushing to http://localhost:$HGPORT/
6 searching for changes
6 searching for changes
7 ssl required
7 remote: ssl required
8 % serve errors
8 % serve errors
9 % expect authorization error
9 % expect authorization error
10 abort: authorization failed
10 abort: authorization failed
@@ -19,10 +19,10 b' searching for changes'
19 % expect success
19 % expect success
20 pushing to http://localhost:$HGPORT/
20 pushing to http://localhost:$HGPORT/
21 searching for changes
21 searching for changes
22 adding changesets
22 remote: adding changesets
23 adding manifests
23 remote: adding manifests
24 adding file changes
24 remote: adding file changes
25 added 1 changesets with 1 changes to 1 files
25 remote: added 1 changesets with 1 changes to 1 files
26 % serve errors
26 % serve errors
27 changegroup hook: HG_NODE=ba677d0156c1196c1a699fa53f390dcfc3ce3872 HG_SOURCE=serve HG_URL=remote:http
27 changegroup hook: HG_NODE=ba677d0156c1196c1a699fa53f390dcfc3ce3872 HG_SOURCE=serve HG_URL=remote:http
28 rolling back last transaction
28 rolling back last transaction
General Comments 0
You need to be logged in to leave comments. Login now