Connection pool bugfix
This is only seen if you try to call amqp.cleanup(). Change-Id: I5c14a21987b4b7aeca7dddc91d7c8b2510edefeb
This commit is contained in:
parent
29dcc87052
commit
45ab8699a6
@ -72,7 +72,7 @@ class ConnectionPool(pool.Pool):
|
||||
return self.connection_cls(self.conf)
|
||||
|
||||
def empty(self):
|
||||
for item in self.iter_free:
|
||||
for item in self.iter_free():
|
||||
item.close()
|
||||
# Force a new connection pool to be created.
|
||||
# Note that this was added due to failing unit test cases. The issue
|
||||
|
Loading…
x
Reference in New Issue
Block a user