-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Feat/pika #9
Conversation
api/pika_service.py
Outdated
connection = pika.BlockingConnection(pika.ConnectionParameters(host=PIKA_HOST)) | ||
channel = connection.channel() | ||
|
||
channel.queue_declare(queue='terarium') |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We might want to use a more specific name for this queue.
simulation-status
?
@fivegrant can you test and merge this today? Let's also add to the README a section describing how this works for Uncharted's reference. |
|
* merging things * working service with latest changes * Pika status * set pyciemms to offical repo * working * working * removed print * remove test * removed print * Fix pika upstream * Fix pika usage * Deploy in separate image * Fix mock consumer and README --------- Co-authored-by: Five Grant <5@fivegrant.com>
Description