Anders Eknert

Results 206 comments of Anders Eknert

Seeing this here too. Any fix or known workaround available? 🙂 The command still exits successfully, but obviously you'd want those files covered as well.

That's an interesting idea @Joffref 🙂 And it's probably not a big thing to do from a technical POV, as I assume Hugo supports this well. I think the big...

Hi @yortch! Is there any particular reason you want to log at INFO level? Our usual recommendation is to log at ERROR level for production environments, and use the [decision...

Thanks Jorge! Yeah I think we're basically mixing two different loggers at INFO level currently — the first one being the application logs where things like bundle activation is logged,...

Thanks for filing this @danoliver1! I'm curious about what the implementation would look like. Decision log uploads normally happen quite frequently, and with many running OPA instances for a given...

SGTM, @danoliver1 👍

Indeed, it isn't the number -> string coercion that's troubling here, but how `1.0 == 1`... maybe, maybe not :) The example in the first description (which Stephan provided on...

Javascript, which has the same notion of 1 being equal to 1.0, does this correctly, I think: ```javascript JSON.stringify({1.0: 1}) "{\"1\":1}" JSON.stringify({1.0: 1, 1: 1}) "{\"1\":1}" JSON.stringify({1: 1, 1.0: 1})...