Arthur Lacoste
Arthur Lacoste
For anyone looking at this, we are currently using the following workaround: ```kt // Returns a modified DataFetcher that runs code before the normal resolution. This is typically useful to...
I have the same issue with a 'ON FIELD_DEFINITION' directive. At wiring time, the SchemaDirectiveWiringEnvironment does not seem to contain the values of arguments for which we specified defaults. (And...
If anyone is running into issues with a ClassCastException to PGobject, I had the issue as well, see: https://gist.github.com/quangIO/a623b5caa53c703e252d858f7a806919#gistcomment-2902133 Completely beginner in this framework, so please correct me if I'm...
I think you are onto something about the race condition. I ended up replacing this with a custom implementation I made myself that generates a *random* filename for the stdout/stderr...
Sorry I forgot to paste it there, but `randomString` used above is also a custom implem: ``` RANDOM = new Random() UPPERCASE_CHARS = ('A'..'Z').join("") LOWERCASE_CHARS = ('a'..'z').join("") NUMBERS = ('0'..'9').join("")...
We are seeing the issue as well. Our CI sometimes fails on the first sentry command, but even if it succeeds it always fails on the second. First: ``` sentry-cli...