From: Zack Cerza Date: Tue, 12 Aug 2014 23:28:20 +0000 (-0600) Subject: Don't remove lockfiles X-Git-Tag: 1.1.0~1262 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=591b511fdc3d777bce741dfc2c6aadd78bb3fa44;p=teuthology.git Don't remove lockfiles Signed-off-by: Zack Cerza --- diff --git a/teuthology/repo_utils.py b/teuthology/repo_utils.py index b0c783832..20027404e 100644 --- a/teuthology/repo_utils.py +++ b/teuthology/repo_utils.py @@ -246,5 +246,3 @@ class FileLock(object): fcntl.lockf(self.file, fcntl.LOCK_UN) self.file.close() self.file = None - if os.path.exists(self.filename): - os.remove(self.filename)