jcarmena
jcarmena
Sure. I'm using aioamqp inside a web app to spawn background tasks in another machine. I create a new channel in each request and then I publish to an exchange,...
It's RabbitMQ. Nothing interesting there, only open/close connections. I have noticed that it does not happen every time (but apache bench always fails "apr_socket_recv: Connection reset by peer (104)"), so...
Yes, it's aiohttp, with this minimal code fails too: ``` import asyncio import aioamqp import textwrap from aiohttp.web import Application, Response, StreamResponse import argparse parser = argparse.ArgumentParser() parser.add_argument("-p", "--port", help="Port")...
Arg, I forgot channel.close() but still fails, try it with higher numbers
Last master keeps failing. Remember that it does not shows the error every time, it does after two or three tests.