Gentoo Archives: gentoo-commits

From: Matt Turner <mattst88@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/catalyst:catalyst-3.0-stable commit in: catalyst/base/
Date: Tue, 06 Jul 2021 22:13:25
Message-Id: 1625609459.29c56b4712c738ff37c4d506d42f1adb21b4ec9c.mattst88@gentoo
1 commit: 29c56b4712c738ff37c4d506d42f1adb21b4ec9c
2 Author: Matt Turner <mattst88 <AT> gentoo <DOT> org>
3 AuthorDate: Tue Jul 6 22:10:59 2021 +0000
4 Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
5 CommitDate: Tue Jul 6 22:10:59 2021 +0000
6 URL: https://gitweb.gentoo.org/proj/catalyst.git/commit/?id=29c56b47
7
8 catalyst: Remove remaining snakeoil LockInUse usage
9
10 I missed this when backporting.
11
12 Fixes: 9221e327 ("catalyst: Replace snakeoil's locks with fasteners")
13 Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>
14
15 catalyst/base/stagebase.py | 4 ----
16 1 file changed, 4 deletions(-)
17
18 diff --git a/catalyst/base/stagebase.py b/catalyst/base/stagebase.py
19 index ad0028e1..28c4ee23 100644
20 --- a/catalyst/base/stagebase.py
21 +++ b/catalyst/base/stagebase.py
22 @@ -1497,10 +1497,6 @@ class StageBase(TargetBase, ClearBase, GenBase):
23 sys.stdout.flush()
24 try:
25 getattr(self, x)()
26 - except LockInUse:
27 - log.error('Unable to aquire the lock...')
28 - failure = True
29 - break
30 except Exception:
31 log.error('Exception running action sequence %s', x, exc_info=True)
32 failure = True