rename rabbitmq routing

This commit is contained in:
j 2010-06-23 07:24:44 +02:00
parent 1af5ac87b5
commit d2aae7d958
1 changed files with 5 additions and 5 deletions

View File

@ -7,17 +7,17 @@ import models
def send_bg_message(msg):
conn = DjangoBrokerConnection()
publisher = Publisher(connection=conn, exchange="oxdb-bg",
routing_key="oxdb-bg")
publisher = Publisher(connection=conn, exchange="pandora-bg",
routing_key="pandora-bg")
publisher.send(msg)
publisher.close()
def run():
conn = DjangoBrokerConnection()
consumer = Consumer(connection=conn, queue="oxdb-bg",
exchange="oxdb-bg",
routing_key="oxdb-bg")
consumer = Consumer(connection=conn, queue="pandora-bg",
exchange="pandora-bg",
routing_key="pandora-bg")
def handle_background_tasks_callback(data, message):
print("Got bg message")
print data