Philipp Oppermann
Philipp Oppermann
The event iterator will finish as soon as there are no more events available for this node. The `stop` event is only sent when a dataflow is stopped early by...
I can see how this behavior can be surprising, though. The `stop` event is currently a `stop_sent_before_inputs_were_closed` event, which is not obvious. I'm open to changing this behavior in general...
Unfortunately I don't have any good proposal that satisfies all my answers to the above questions. So I guess we have to compromise somewhere... I guess with good documentation, I...
Could you share a link to your code? It's a bit unclear to me how a segfault could occur inside the `poll_next` method of some channel library.
Thanks for the update! So the problem appears to be fixed after updating to `dora v0.3.3`?
I tried to reproduce this a few times with the `C_Python_test` example as suggested in https://github.com/dora-rs/dora/issues/515#issuecomment-2140087939, but this error never happened for me.
Thanks for reporting this! Could you try whether it works without the `--uv` flag? My suspicion is that this error is caused by https://github.com/dora-rs/dora/pull/765, especially these lines: https://github.com/dora-rs/dora/blob/79f7304457f75725748dc00463230039f448d8ca/binaries/daemon/src/spawn.rs#L172-L179 The error...
Thanks for trying! Your example doesn't seem to different from the `cmake-dataflow` example in the main dora repo. Does this example work for you? Could you also try to run...
Interesting! Could you to install dora through cargo instead of pip? The command for installing is: ``` cargo install dora-cli --locked ``` Afterwards you should have a `~/.cargo/bin/dora` binary. Not...
Yeah, that's what I suspected. My guess is that the pip-installed version is not part of the PATH or only installed into some venv. When the daemon is not started...