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
{{ message }}
This repository has been archived by the owner on Apr 18, 2018. It is now read-only.
The sockets this library makes are not marked close on exec and consequently are inherited by any child processes such as those executed by the subprocess module.
This is still open? I have to shutdown my connections like this to stop them from staying in use:
for conn in gm_client.connection_list:
try:
conn.gearman_socket.shutdown(socket.SHUT_RDWR)
conn.gearman_socket.close()
conn._reset_connection()
except:
pass
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
The sockets this library makes are not marked close on exec and consequently are inherited by any child processes such as those executed by the subprocess module.
Code is:
The text was updated successfully, but these errors were encountered: