Eugene Tataurov
Eugene Tataurov
Hi! Your serial example doesn't look correct, it doesn't await for result. for python3.6 it should be ` [await conn.hgetall('my_key') for i in range(10000]` Having 10000 request in parallel might...
Yes, this will be great, but... for python 2 we need a lot of code, because we need to aquire import lock, call find_module for each submodule in 'module1.module2.module3' for...
Hello, I cannot reproduce with this example ```python from nameko.runners import ServiceRunner import eventlet; eventlet.monkey_patch() from nameko.rpc import rpc from nameko_redis import Redis class MyService(object): name = "my_service" redis =...
@staskuban I looked at your code and traceback and looks like even though you've defined your own service runner, you still run your service with `nameko run`. Custom service runner...
Hi! You have a Timeout error because your app could not connect to mongo. Here is why it happens: - pytest-tornado creates and start its own io_loop for each test...
In your case deferred won't be called, and I there is needed some kind of timeout, like in https://github.com/eugeniy/pytest-tornado So it's more like a error in the test, but which...
but this won't help with deferreds that haven't been called. and callLater doesn't return deferred. I am not sure if I'm getting it right, but in your case the best...
Yeah, I understand problem now. The tricky part is to find unhandled exceptions, and as far as I understood, the only thing you can get about unhandled errors is that...