Nicolas Morel

Results 175 comments of Nicolas Morel

Oh sorry I missed that, that looks like a feature request for extract, I don't see a way out of the box currently, unless you start parsing the description of...

An object cannot be mixed, either it's strict or it's not, and it's not through `append` that this happens. I'm not sure if your request makes sense.

Schemas operations are immutable, but it doesn't change the fact that the object retains its initial property of strictness.

Closing due to lack of activity. Feel free to reply if you have more to discuss.

I've tried to isolate it, but couldn't. The bug usually happens on our side after several days of async iteration, even if there was a reproducible scenario, I'm uncertain if...

Our scenario is a very basic scheduler that could be summed up like this: ```js async function () { while (true) { let transaction; try { transaction = apm.startTransaction('name); await...

I indeed do notice a transaction after that call, it's marked as `ended`, there are also spans sometimes (all ended as well), probably depending on timing. I have added the...

Thanks a lot! Do we need to keep this one open then?

If I understand the problem well enough, can't you use `fs.realpath` and compare the result with the provided path to make sure they're equal ? There's no mention in the...