Loosing fate about "plays nice with others"
Andrew Bennetts
andrew at bemusement.org
Wed Aug 1 00:52:45 UTC 2012
Propadovic Nenad wrote:
[...]
> C:\...>bzr branch
> https://svn.akazaresearch.com/openclinica/OpenClinica/tags/OpenClinica-3.1.2-Community/projects/
> C:/Users/Nenad/Desktop/svnimport_akakaaza -Ossl.cert_reqs=none
> Not checking SSL certificate for svn.akazaresearch.com
> Not checking SSL certificate for svn.akazaresearch.com
> bzr: ERROR: A Subversion remote access command failed: REPORT of
> '/openclinica/!svn/bc/15828': Could not read response body: Secure
> connection truncated (https://svn.akazaresearch.com)
This sounds like the server (or perhaps a network link between you and the
server) is cutting off the connection. Perhaps it's not able to deal with the
relatively high load bzr-svn places upon svn (unlike fetching a svn checkout,
it's basically fetching every single revision since the start of the
repository).
If so, you *might* be able work around this by fetching branches in small
increments, e.g. the first 100 revisions, then the next 100, etc. You can do
this via commands like:
bzr branch -r 100 svn://.../trunk
cd trunk
bzr pull -r 200
bzr pull -r 300
# etc
-Andrew.
More information about the bazaar
mailing list