Show More
@@ -225,7 +225,10 b' def _pushbundle2(pushop):' | |||
|
225 | 225 | cgpart = bundle2.bundlepart('B2X:CHANGEGROUP', data=cg.getchunks()) |
|
226 | 226 | bundler.addpart(cgpart) |
|
227 | 227 | stream = util.chunkbuffer(bundler.getchunks()) |
|
228 | reply = pushop.remote.unbundle(stream, ['force'], 'push') | |
|
228 | try: | |
|
229 | reply = pushop.remote.unbundle(stream, ['force'], 'push') | |
|
230 | except bundle2.UnknownPartError, exc: | |
|
231 | raise util.Abort('missing support for %s' % exc) | |
|
229 | 232 | try: |
|
230 | 233 | op = bundle2.processbundle(pushop.repo, reply) |
|
231 | 234 | except bundle2.UnknownPartError, exc: |
General Comments 0
You need to be logged in to leave comments.
Login now