tests/test-empty
author Alexandre Fayolle <alexandre.fayolle@logilab.fr>
Thu, 23 Sep 2010 11:41:27 +0200
branchstable
changeset 12391 ca5fd84d62c6
parent 6944 7e5f3480c45b
permissions -rwxr-xr-x
Fix memory leak when using hg commands over http repositories When using hg commands over an http repository in a long running process, a httphandler instance is leaked for each command, because of a loop handler.parent -> OpenerDirector and OpenerDirector.handlers -> handler which is not handled by Python's gc. Discussion on #mercurial concluded that removing the __del__ method solved the problem.

#!/bin/sh

hg init a
cd a
hg log
hg grep wah
hg manifest
hg verify
ls .hg
ls .hg/store

cd ..
hg clone a b
cd b
hg verify
ls .hg
ls .hg/store