Manuel Spigolon
Manuel Spigolon
You should [check the mapping](https://www.elastic.co/guide/en/elasticsearch/reference/current/indices-get-mapping.html) of the index in your elasticseach instance ``` curl --location --request GET 'http://localhost:9200/pino/_mapping/log' ``` The problem here is that there is a mismatch from the...
As update, it works only if I add a root `.eslintrc` file: ``` { "extends": "standard" } ```
A bit late, but would you mind to add a test?
Thanks for the advice There are a couple of things that are really breaking changes like: - "definitions" renamed to "$defs" - "dependencies" renamed to "dependentRequired" Plus new keywords Help...
It is not because the value is coerced. https://github.com/fastify/fastify/blob/main/docs/Reference/Validation-and-Serialization.md#validation Try: ``` const fastify = Fastify({ ajv: { customOptions: { coerceTypes: false } } }) ```
Would you like to send a Pull Request to address this feature? Remember to add unit tests.
> Is the same valid for single property objects? I think the latter is right and the former is not: `items` may contain an array and you may want to...
Did you inspect the getNewAccessTokenUsingRefreshToken 's `response`? What does it contain?
It seems an old yarn known issue: https://github.com/yarnpkg/yarn/issues/5353#issuecomment-399381322
Could you add a [Minimal, Reproducible Example](https://stackoverflow.com/help/minimal-reproducible-example)? Without it, we are unable to help you (and `follow the readme.md` is not a runnable example).