Update notes about memory leaks.
authorJelmer Vernooij <jelmer@samba.org>
Wed, 19 Dec 2007 10:28:41 +0000 (11:28 +0100)
committerJelmer Vernooij <jelmer@samba.org>
Wed, 19 Dec 2007 10:28:41 +0000 (11:28 +0100)
FAQ
README

diff --git a/FAQ b/FAQ
index 32f14e99a082ed846b763c088e070129c4d6fdf6..7b64a5d493c3fe332d9a7e7aeb3bf101d5b97325 100644 (file)
--- a/FAQ
+++ b/FAQ
@@ -3,19 +3,14 @@
 =================================================================
 Bazaar is using a lot of memory accessing a Subversion repository
 =================================================================
-bzr-svn can use a lot of memory cloning big branches. The problem appears to be 
-caused mainly by a memory leak in the python-subversion bindings for the svn_ra_get_log() 
-function.
+bzr-svn can use a lot of memory cloning big branches when older 
+versions of the python-subversion bindings are used. This memory leak 
+has been fixed in the trunk of Subversion (r28544) and has been 
+proposed for inclusion in Subversion 1.4.7.
 
-Newer versions of Subversion (1.5 especially) use significantly less memory 
-than older versions (though they still seem to leak).
-
-The easiest way to work around this problem is to Ctrl+C the branch operation 
+One way to work around this problem is to Ctrl+C the branch operation 
 and restart it.
 
-More information can be found in the bug report at 
-https://launchpad.net/bugs/54253
-
 ==============================================================================
 I am unable to access a repository that requires user/password authentication.
 ==============================================================================
@@ -29,7 +24,7 @@ the password by accessing the repository using the Subversion command-line
 client. For example, try running 'svn info <url>'.
 
 ==============================================================================
-Trying to branch into repository gives prints an error about incompatibility.
+Trying to branch into repository gives an error about incompatibility.
 ==============================================================================
 
 Creating a repository and then trying to clone a Subversion branch into 
diff --git a/README b/README
index 3107fed8ad9f9e4d22c3e1177efbd824c8d9cd62..c083ae6147a64eaab75cae424d0d2fcb578f2955 100644 (file)
--- a/README
+++ b/README
@@ -151,16 +151,3 @@ Installation
 Simply place this directory in ~/.bazaar/plugins and you should be able 
 to check out branches from Subversion using bzr. Make sure the directory 
 name is 'svn'.
-
-============
-Memory Usage
-============
-bzr-svn can use a lot of memory cloning big branches. The problem appears to be 
-caused both by a memory leak in the python-subversion bindings or Subversion
-(the svn_ra_get_log() function) and the memory overhead from Bazaar.
-
-The easiest way to work around this problem is to Ctrl+C the branch operation 
-and restart it.
-
-More information can be found in the bug report at 
-https://launchpad.net/bugs/54253