0

I do hundreds of request per second using the request module in nodejs and sometimes i get the following error

nodejs: ../deps/uv/src/unix/async.c:149: uv__async_io: Assertion `n == sizeof(val)' failed.
Code: null Signal: SIGABRT

how can i catch the signal?

0x4139
  • 73
  • 2
  • 10

1 Answers1

0

An assert is blowing up, and that particular one is there to catch programming errors, or totally unexpected conditions. Another user reported this to us, but it turned out it was a missuse of the API. I suggest you open an issue on our bugtracker: https://github.com/libuv/libuv/issues, ideally with a reproducible reduced test case.

saghul
  • 1,990
  • 1
  • 13
  • 15