What steps will reproduce the bug?
I have a rather download-heavy script and it often crashes with
node: ../deps/uv/src/unix/core.c:918: uv__io_stop: Assertion `loop->watchers[w->fd] == w' failed.
I found some other bugs that seem related to datagrams so to be sure I added the host it's connecting to to /etc/hosts, hoping that means no UDP connections, however that doesn't help. The connections my script does are only TCP
How often does it reproduce? Is there a required condition?
Within a few minutes, but only when the server that I'm fetching from times out. (the server times out very often)
Additional information
I'm using node-fetch to do the downloading but that just uses the http module of course.
What steps will reproduce the bug?
I have a rather download-heavy script and it often crashes with
I found some other bugs that seem related to datagrams so to be sure I added the host it's connecting to to /etc/hosts, hoping that means no UDP connections, however that doesn't help. The connections my script does are only TCP
How often does it reproduce? Is there a required condition?
Within a few minutes, but only when the server that I'm fetching from times out. (the server times out very often)
Additional information
I'm using node-fetch to do the downloading but that just uses the
httpmodule of course.