Forgot to inherit from PoolGroup

This commit is contained in:
Ask Solem 2011-09-10 12:03:22 +01:00
parent e5e07f0c55
commit 5568a6b73c
1 changed files with 1 additions and 1 deletions

View File

@ -89,7 +89,7 @@ class Connections(PoolGroup):
connections = register_group(Connections())
class Producers(HashingDict):
class Producers(PoolGroup):
def create(self, connection, limit):
return ProducerPool(connections[connection], limit=limit)