lenolib
lenolib
I can second the [minor] annoyance of this behaviour. I hit it regularly while debugging a locally run server and setting a breakpoint in the server code. Since no response...
I have a similar problem, where e.g. errors thrown in any callback supplied to plugins loses their stack traces and can be very tedious to track down. This is the...
We were just bitten by this bug and spent some hours hunting it down before finding this reported issue. Supplying `eventIdKey: null` as an option seems to bypass it for...
This is an annoying issue, which appears to break stuff in the wild, such as https://github.com/OpenBazaar/OpenBazaar-Server/issues/325 There exists another issue about the same thing which was closed, with more details;...
I stumbled upon the same error on a completely unrelated project. The offending pip-package seems to be nose, which throws an error on reinstallation or upgrade. ``` FROM ubuntu:14.04 #...
Async generators does seem to improve the situation slightly, but the main problem with blocking for a long time persists:  Implemented simply by: ```js . . ctx.logger.debug('Returning %s objs',...
In case it is useful for anyone, I've updated my monkey patch to work with the latest version. Can be found here: https://gist.github.com/lenolib/e801737a949f810fdc2f1dc64926ebd8 (Update 16th April: fixed a missing return...
@philippemiguet I'm afraid we gave up using the patching above anymore after we moved to graphql-yoga. I remember the library we used before allowed us specify the execute function when...