Set state to "close" and call handle_close()
for all connections
This commit is contained in:
parent
25ef9fec51
commit
9e79386595
|
@ -203,6 +203,14 @@ class BMConnectionPool(object):
|
||||||
continue
|
continue
|
||||||
|
|
||||||
self.lastSpawned = time.time()
|
self.lastSpawned = time.time()
|
||||||
|
else:
|
||||||
|
for i in (
|
||||||
|
self.inboundConnections.values() +
|
||||||
|
self.outboundConnections.values()
|
||||||
|
):
|
||||||
|
i.set_state("close")
|
||||||
|
# FIXME: rating will be increased after next connection
|
||||||
|
i.handle_close()
|
||||||
|
|
||||||
if acceptConnections:
|
if acceptConnections:
|
||||||
if not self.listeningSockets:
|
if not self.listeningSockets:
|
||||||
|
|
Reference in New Issue
Block a user