librabbitmq
librabbitmq copied to clipboard
Python bindings to librabbitmq-c
According this old email thread consumer cancel notifications are necessary when using multiple broker urls. https://groups.google.com/d/msg/celery-users/i87kIvHn6gg/jwjZK2pHpCkJ Has librabbitmq gained support for this since the email?
Support was added to rabbitmq-c in alanxz/rabbitmq-c#196, however librabbitmq still treats auth failures as generic socket errors, rather than providing a more specific exception. eg with librabbitmq 1.6.1, kombu 3.0.35,...
Hi, Maybe I've just overlooked something, but I can't find transactions support (tx_select, tx_commit, tx_rollback) in librabbitmq, however the underlying C library seems to support these. Could you please implement...
Using pip to install librabbitmq succeeds, but using easy_install or "python setup.py install", fails. My OS is Ubuntu 12.04. I had similar results on Scientific Linux 6. ## pip succeeds...
Fresh install of Windows 7, python2.6.4, gnuwin32 and git. All working i.e. %path% is correct. pip install librabbitmq & easy_install librabbitmq result in the same thing. As does getting the...
Using celery I found out in the log file several error like this one: ``` Task celery.chord_unlock with id 549c898e-ed49-4e7d-8b31-8bcf5c541f46 raised exception: "KeyError('properties',)" Task was called with args: ('0183df27-0cb3-4da4-8f2c-948d0e70cb88', suggestion.attachImages())...
Since we upgraded our celery to version 3 and started using librabbitmq, we started to see this particular error quite frequently: "ConnectionError: Couldn't log in: Unknown error 536871016" I looked...
Here is the code: ``` python import time t0 = time.time() conn = Connection(host=conf.host, port=conf.port) t1 = time.time() channel = conn.channel() t2 = time.time() channel.exchange_declare(exchange=conf.exchange, type=conf.type, durable=conf.durable) t3 = time.time()...
I can't use librabbitmq on 3.11, this is because filemode 'U' is still in setup.py for the 2.0.0 version. This is already been fixed in the code but not released....