You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello, I hope you are doing great. This is a question rather than an issue. I recently had to use Honcho in a way that required it to run in the current user session. The default setting for Python's subprocess.Popen is to have start_new_session as False, but in Honcho, it was overridden and changed to True.
I'm primarily asking this out of genuine curiosity. I've resolved my issue by overriding the class and setting start_new_session back to False, but I'm wondering why it was changed in the first place. What am I missing here?
The text was updated successfully, but these errors were encountered:
Tobi-De
changed the title
Why start_new_session ? (sorry not really an issue)
Why start_new_session=True ? (sorry not really an issue)
Dec 21, 2023
Hello, I hope you are doing great. This is a question rather than an issue. I recently had to use Honcho in a way that required it to run in the current user session. The default setting for Python's
subprocess.Popen
is to havestart_new_session
asFalse
, but in Honcho, it was overridden and changed toTrue
.I'm primarily asking this out of genuine curiosity. I've resolved my issue by overriding the class and setting
start_new_session
back toFalse
, but I'm wondering why it was changed in the first place. What am I missing here?The text was updated successfully, but these errors were encountered: