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
After upgrading a Python 2 application to Python 3.4, I noticed an OSError is raised when sending a USR2 signal to the process. I believe the problem is related to a change in socket behavior in Python 3.4:
After upgrading a Python 2 application to Python 3.4, I noticed an
OSError
is raised when sending aUSR2
signal to the process. I believe the problem is related to a change in socket behavior in Python 3.4:https://docs.python.org/3.4/library/os.html#fd-inheritance
I don't know if this is a correct fix, but adding the below lines to
Arbiter.start
made theOSError
go away:This is using version
19.2.1
.The text was updated successfully, but these errors were encountered: