mirror of https://github.com/celery/kombu.git
Memory transport does support fanout
This commit is contained in:
parent
88f97d1538
commit
f58639708b
|
@ -3,6 +3,7 @@ from __future__ import absolute_import, unicode_literals
|
|||
|
||||
from kombu.five import Queue, values
|
||||
|
||||
from . import base
|
||||
from . import virtual
|
||||
|
||||
|
||||
|
@ -64,6 +65,8 @@ class Transport(virtual.Transport):
|
|||
#: memory backend state is global.
|
||||
state = virtual.BrokerState()
|
||||
|
||||
implements = base.Transport.implements
|
||||
|
||||
driver_type = 'memory'
|
||||
driver_name = 'memory'
|
||||
|
||||
|
|
Loading…
Reference in New Issue