##// END OF EJS Templates
stream-clone: add the `-exp` prefix to the bundle part...
marmoute -
r51425:116da6bb default
parent child Browse files
Show More
@@ -1952,7 +1952,7 b' def addpartbundlestream2(bundler, repo, '
1952 1952 )
1953 1953 requirements = streamclone.streamed_requirements(repo)
1954 1954 requirements = _formatrequirementsspec(requirements)
1955 part = bundler.newpart(b'stream3', data=it)
1955 part = bundler.newpart(b'stream3-exp', data=it)
1956 1956 part.addparam(b'bytecount', b'%d' % bytecount, mandatory=True)
1957 1957 part.addparam(b'filecount', b'%d' % filecount, mandatory=True)
1958 1958 part.addparam(b'requirements', requirements, mandatory=True)
@@ -2611,7 +2611,7 b' def handlestreamv2bundle(op, part):'
2611 2611 streamclone.applybundlev2(repo, part, filecount, bytecount, requirements)
2612 2612
2613 2613
2614 @parthandler(b'stream3', (b'requirements', b'filecount', b'bytecount'))
2614 @parthandler(b'stream3-exp', (b'requirements', b'filecount', b'bytecount'))
2615 2615 def handlestreamv3bundle(op, part):
2616 2616 return handlestreamv2bundle(op, part)
2617 2617
@@ -564,7 +564,7 b' Clone with background file closing enabl'
564 564 streaming all changes
565 565 sending getbundle command
566 566 bundle2-input-bundle: with-transaction
567 bundle2-input-part: "stream3" (params: 3 mandatory) supported
567 bundle2-input-part: "stream3-exp" (params: 3 mandatory) supported
568 568 applying stream bundle
569 569 1093 files to transfer, 102 KB of data (no-zstd !)
570 570 1093 files to transfer, 98.9 KB of data (zstd !)
General Comments 0
You need to be logged in to leave comments. Login now