mirror of
https://github.com/python/cpython.git
synced 2025-08-30 21:48:47 +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 = []
|
||||||
self.active_children.append(pid)
|
self.active_children.append(pid)
|
||||||
self.close_request(request)
|
self.close_request(request)
|
||||||
return
|
|
||||||
else:
|
else:
|
||||||
# Child process.
|
# Child process.
|
||||||
# This must never return, hence os._exit()!
|
# This must never return, hence os._exit()!
|
||||||
|
self.socket.close()
|
||||||
try:
|
try:
|
||||||
self.finish_request(request, client_address)
|
self.finish_request(request, client_address)
|
||||||
os._exit(0)
|
os._exit(0)
|
||||||
|
|
|
@ -75,6 +75,8 @@ Core and Builtins
|
||||||
Library
|
Library
|
||||||
-------
|
-------
|
||||||
|
|
||||||
|
- Issue #5715: In socketserver, close the server socket in the child process.
|
||||||
|
|
||||||
- Issue #12124: zipimport doesn't keep a reference to zlib.decompress() anymore
|
- Issue #12124: zipimport doesn't keep a reference to zlib.decompress() anymore
|
||||||
to be able to unload the module.
|
to be able to unload the module.
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue