Commit 1f2b284f authored by Spiros Koulouzis's avatar Spiros Koulouzis

Added properties

parent 776ca552
No preview for this file type
...@@ -15,9 +15,14 @@ import random ...@@ -15,9 +15,14 @@ import random
import time import time
import json import json
print "---------"
if len(sys.argv) > 1:
rabbitmq_host = sys.argv[1]
else:
rabbitmq_host = '127.0.0.1'
connection = pika.BlockingConnection(pika.ConnectionParameters(host='127.0.0.1')) connection = pika.BlockingConnection(pika.ConnectionParameters(host=rabbitmq_host))
channel = connection.channel() channel = connection.channel()
channel.queue_declare(queue='planner_queue') channel.queue_declare(queue='planner_queue')
...@@ -154,12 +159,18 @@ def on_request(ch, method, props, body): ...@@ -154,12 +159,18 @@ def on_request(ch, method, props, body):
body=str(response)) body=str(response))
ch.basic_ack(delivery_tag = method.delivery_tag) ch.basic_ack(delivery_tag = method.delivery_tag)
channel.basic_qos(prefetch_count=1) channel.basic_qos(prefetch_count=1)
channel.basic_consume(on_request, queue='planner_queue') channel.basic_consume(on_request, queue='planner_queue')
print(" [x] Awaiting RPC requests") print(" [x] Awaiting RPC requests")
channel.start_consuming() channel.start_consuming()
#f = open("../doc/json_samples/plannerInput2.json","r") #f = open("../doc/json_samples/plannerInput2.json","r")
#body=f.read() #body=f.read()
#response = handleDelivery(body) #response = handleDelivery(body)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment