Chris

Results 5 comments of Chris

I found a workaround - run the non-yielding function with `eventlet.tpool` ``` import datetime import itertools import eventlet.tpool from nameko.rpc import rpc class PrimeService: name = "prime_service" @rpc def prime(self,...

Possibly this is related to https://github.com/eventlet/eventlet/issues/420

An additional problem is that, when testing this with pytest and container_factory, the test will hang rather than failing.

I got another error which is probably related to this one - here is a code sample: ```python ## __init__.py import eventlet eventlet.monkey_patch() ## some module that gets imported first...

I just realised: there might also have to be a special case for testing if a float is in a set of ints, or any other situation where `a ==...