mirror of
https://github.com/python/cpython.git
synced 2025-08-27 04:05:34 +00:00
Issue #5715: In socketserver, close the server socket in the child process.
This commit is contained in:
parent
7963a35b41
commit
7b54e7562d
2 changed files with 3 additions and 1 deletions
|
@ -529,10 +529,10 @@ class ForkingMixIn:
|
|||
self.active_children = []
|
||||
self.active_children.append(pid)
|
||||
self.close_request(request)
|
||||
return
|
||||
else:
|
||||
# Child process.
|
||||
# This must never return, hence os._exit()!
|
||||
self.socket.close()
|
||||
try:
|
||||
self.finish_request(request, client_address)
|
||||
os._exit(0)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue