1 Star 0 Fork 58

孤独的大河马在躺平/dnf

forked from src-openEuler/dnf 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
get-lockfile-exists-before-unlick.patch 874 Bytes
一键复制 编辑 原始数据 按行查看 历史
small_leek 提交于 2023-02-22 00:25 . Add exception capture
From a569c1cd79d225f928e00b5ab3e0084ddaa41334 Mon Sep 17 00:00:00 2001
From: small_leek <xiasenlin1@huawei.com>
Date: Tue, 21 Feb 2023 20:29:39 +0800
Subject: [PATCH] add patch
---
dnf/lock.py | 8 ++++++--
1 file changed, 6 insertions(+), 2 deletions(-)
diff --git a/dnf/lock.py b/dnf/lock.py
index ee7a0db..851030e 100644
--- a/dnf/lock.py
+++ b/dnf/lock.py
@@ -161,6 +161,10 @@ class ProcessLock(object):
pid = self._try_lock(my_pid)
def __exit__(self, *exc_args):
- if self.count == 1:
- os.unlink(self.target)
+ if self.count == 1 and os.path.exists(self.target):
+ try:
+ os.unlink(self.target)
+ except FileNotFoundError as err:
+ msg = _('No %s existed, please check!') % (self.target)
+ logger.warning(msg)
self._unlock_thread()
--
2.33.0
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/nebd/dnf.git
git@gitee.com:nebd/dnf.git
nebd
dnf
dnf
master

搜索帮助