Evan Sherwood
Evan Sherwood
I also can't figure this out. An example of how to do this correctly would really go a long way. I can't find the source code for the two live...
I got it working by using the plugin rather than the gem; I imagine there's a different setup protocol for the gem that I'm just not aware of.
Looking into this a little further, it seems these are being outputted because the internal `docker-compose` command for anything cage-related doesn't specify different [project name](https://docs.docker.com/compose/reference/overview/#use--p-to-specify-a-project-name)s for the pods. If cage...
Any update on this? I'm encountering the same `MaxListenersExceededWarning` as @ertrzyiks
AFAYK is the work just "fix the issue" or "migrate from Bunyan to Pino"? Wasn't completely clear reading through the history where y'all ended up on this.
The [repo @ertrzyiks provided](https://github.com/ertrzyiks/jest-pact-memory-leak-example) shows warnings as previously described that concern `WriteStream`. Turning on `--trace-warnings` points directly to the Bunyan line previously mentioned. Editing those lines as was proposed in...
@davepacheco Thanks for confirming what I was suspecting. Are there plans to update mdb_v8 for newer versions, or is this project dead? If the latter, what are the alternatives?
Had the same problem with Rails 3.0.5. Did the same suggested fix as mhartl and now it works fine, fwiw.
What about this? ```js envalid.cleanEnv(process.env, { USE_TLS: envalid.bool(), TLS_CA_CERT_PATH: envalid.str({ requiredWhen: 'USE_TLS' // is true }), // ... }) ``` - Should the subject of `requiredWhen` always have to be...
> Maybe `requiredWhen` could point to a function that takes the full raw env object? Seems like it would probably be simpler to implement and answers both of my previous...