2018-04-24 10:37:00 -04:00
|
|
|
#!/usr/bin/env python3
|
|
|
|
|
|
|
|
# Things used to establish a connection with the RMQ Server
|
|
|
|
|
|
|
|
rmq_params = {'vhost': 'my_vhost',
|
|
|
|
'username': 'user',
|
|
|
|
'password': 'pass',
|
|
|
|
'exchange': 'my_exchange',
|
2018-04-24 20:57:56 -04:00
|
|
|
'order_queue': 'my_order_queue',
|
|
|
|
'reject_queue': 'my_reject_queue'}
|
2018-04-24 12:48:01 -04:00
|
|
|
socket_params = {'size': 1024,
|
2018-04-24 20:57:56 -04:00
|
|
|
'port': 8080,
|
|
|
|
'backlog': 4}
|