1
0
This commit is contained in:
2026-01-06 22:04:52 +08:00
parent 77cc14fa49
commit 07cc58fb36
3 changed files with 63 additions and 6 deletions

View File

@@ -48,9 +48,6 @@ class PipeOperator:
else:
# POSIX implementation
self.pipe_name = f"/tmp/{name}"
# If there is an existing FIFO file, remove it
if os.path.exists(self.pipe_name):
os.unlink(self.pipe_name)
# Create pipe
try:
os.mkfifo(self.pipe_name)