didimelli
didimelli
I can workaround this by doing: ```python async def main() -> None: async with tractor.open_nursery() as n: t1 = await n.run_in_actor(not_raising, name="raising") t2 = await n.run_in_actor(raising, name="not raising") async with...
Here the logs with `loglevel='runtime'` with a3 (still hanging) ``` ❯ poetry run python gse/main.py Jan 03 18:30:44 (no actor context, 20253, __main__.main)) [WARNING] tractor _root.py:121 No actor could be...
With a2, it hangs with these logs: ``` ❯ poetry run python gse/main.py Jan 03 18:37:02 (no actor context, 20930, __main__.main)) [WARNING] tractor _root.py:121 No actor could be found @...
Just tried on all the alphas, and it is hanging with all of them!
Ok, I will look into this tomorrow!
I am not particularly interested in `.run_in_actor()` calls specifically. However, approaching `tractor` from `trio`, it seemed the most `trio-like` API and then I went with that. I think that since...
Hey, i made some modifications to the wiki. Here my redacted version: ``` #install the dependencies sudo apt-get update sudo apt-get install qt5-default libfftw3-dev cmake pkg-config #Install libliquid1d and libliquid1d-dev...
If this happens in tests, tests hang indefinitely. Here's the output running `pytest` and also capturing what is printed after a `ctrl+c`: ``` ===================================== 1 passed, 57 deselected, 1 warning...
@wbarnha Very simple reproduction: Versions: ``` ❯ uv pip list | grep -E 'faust|mode' faust-streaming 0.11.2 mode-streaming 0.4.1 ❯ python --version Python 3.9.2 ❯ python -c "import sys; print(sys.version)" 3.9.2...
Debug logging ``` ❯ python repro.py DEBUG:asyncio:Using selector: EpollSelector DEBUG:asyncio:Using selector: EpollSelector INFO:faust.app.base:[^App]: Starting... INFO:faust.sensors.monitor:[^-Monitor]: Starting... DEBUG:faust.sensors.monitor:[^-Monitor]: Started. INFO:faust.transport.drivers.aiokafka:[^-Producer]: Starting... INFO:faust.transport.producer:[^--ProducerBuffer]: Starting... DEBUG:faust.transport.producer:[^--ProducerBuffer]: Started. DEBUG:aiokafka.producer.producer:Starting the Kafka producer DEBUG:aiokafka:Attempting to...