-
After upgrading to the lastest aio_pika version, our code communicating with RabbitMQ 3.3.5 (don't ask why...) stopped working. We've traced the problem to a queue_declare call with arguments that inc…
-
When exceptions acquire in the `on_message()` callback they don't go to logging even if set log level DEBUG at the `aio_pika` logger. Only if set DEBUG level at `aiormq` they become visible. I underst…
-
Sometimes things go wrong when reconnecting with the robust channels.
Case 1, manager:
```
Mar 29 10:06:20 igel metricq.agent[23517]: closing connection to (320, "CONNECTION_FORCED - broker for…
-
Hapens to grafana sometimes:
```
Aug 20 10:05:04 igel metricq-grafana[3302]: 2019-08-20 10:05:04,594 [INFO ] [aiohttp.access ] 127.0.0.1 [20/Aug/2019:08:04:20 +0000] "POST /query HTTP/1.1"…
-
# Bug report
Hello. I see it's a known problem - https://github.com/wemake-services/wemake-python-styleguide/issues/937
Using wemake-python-styleguide on Python 3.8.1 installed via pyenv seems i…
-
This import fails with 2.3.3: https://github.com/mosquito/aio-pika/blob/master/aio_pika/robust_connection.py#L6
```python
In [1]: from aiormq.connection import parse_bool, parse_int
-------------…
-
Hi,
we are working on an application that, through `aio-pika`, uses `aiormq`. While dealing with some issues caused by unreliable network conditions, we noticed that trying to publish on a channel…
-
hi,
I have a question how to set a timeout param when connection is creating ,otherwise it takes about two heartbeat_interval(130s) to report ConnectionError: [Errno 110].I read aiormq's connection.p…
-
```
Running $ pipenv lock then $ pipenv sync.
Locking [dev-packages] dependencies…
Success!
Using pip: -i https://pypi.org/simple
Using pip: -i https://pypi.org/simple
Using pip: -i https://pypi…
-
I tried to subclass Connection to extend network failures processing.
```
class SomeClass(aiormq.Connection):
async def _on_close(self, exc=ConnectionClosed(0, 'normal closed')):
awa…