Zbyszek Tenerowicz
Zbyszek Tenerowicz
@BrandonCopley looks like it shouldn't. Possible explanation is that async hooks are not yet implemented for the asynchronous primitive used here. Try it on newest node possible and see if...
Yes, it looks like it detected a delay on reading the static file content. Which is weird, as it's generally well implemented. Might be a false positive. Have you tried...
Most precisely, it means the last function you see in the stacktrace contained code that took that 630ms to do something that wasn't visible as a new asynchronous action to...
@nmaves this looks fairly normal. You'd get a better hint if you wrapped your code in named functions you pass to then. But with 80ms this might be a false...
68ms is not a lot. The slowdown was pinned down to a http request handler. If it's not happening on every request and you're not seeing impact on real life...
This thread is not the most comfortable place to dig in further. Mail me :)
@DanielVip3 Looks like a false positive at first glance, but it might not be the readFile itself. I'd be happy to figure it out if you can provide a minimal...
Yeah, this stack is not helpful. I expect bluebird is the reason here. Async hooks sometimes don't work with custom promise libs. There's a way to make them work and...
To me the top lines stand out because I was supposed to parser them out. Looks like something changed and my code is no longer catching those. Which node version...
Very interesting. Could you share a setup/example for me too instantly reproduce? Node version and any other context appreciated.