Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion src/plotman/manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -277,7 +277,9 @@ def key(key: str) -> job.Phase:
# allowing handling of just the log file opening error.

if sys.platform == "win32":
creationflags = subprocess.CREATE_NO_WINDOW
creationflags = (
subprocess.CREATE_NEW_PROCESS_GROUP | subprocess.CREATE_NO_WINDOW
)
nice = psutil.BELOW_NORMAL_PRIORITY_CLASS
else:
creationflags = 0
Expand Down