1
0
mirror of git://sourceware.org/git/lvm2.git synced 2024-12-21 13:34:40 +03:00

lvmdbusd: Remove try/except for mkfifo

We should never run into this error condition when using tempfile.mkdtemp.
This commit is contained in:
Tony Asleson 2022-06-07 08:21:03 -05:00
parent 0d957dcacc
commit 01ef2f2525

View File

@ -122,11 +122,8 @@ class LVMShellProxy(object):
tmp_dir = tempfile.mkdtemp(prefix="lvmdbus_") tmp_dir = tempfile.mkdtemp(prefix="lvmdbus_")
tmp_file = "%s/lvmdbus_report" % (tmp_dir) tmp_file = "%s/lvmdbus_report" % (tmp_dir)
try: # Create a fifo for the report output
# Let's create a fifo for the report output os.mkfifo(tmp_file, 0o600)
os.mkfifo(tmp_file, 0o600)
except FileExistsError:
pass
# Open the fifo for use to read and for lvm child process to write to. # Open the fifo for use to read and for lvm child process to write to.
self.report_fd = os.open(tmp_file, os.O_NONBLOCK) self.report_fd = os.open(tmp_file, os.O_NONBLOCK)