Jose A. Iñigo
Jose A. Iñigo
@sc-moonlight's solution works fine as long as you don't apply any other customization. In my case I previously had this `WebServerFactoryCustomizer`: ``` @Slf4j @Configuration @ConditionalOnClass(Tomcat.class) public class TomcatConfiguration implements WebServerFactoryCustomizer...
Thanks Andy, that fixed it.
@rhuss thanks for your quick reply, I am using a generator so the enricher property fits perfectly. However I am having trouble making this all fit in a Jenkins pipeline,...
The downside I see is that relying on latest (%l) could lead to some uncertainty about what you have in Staging: You build a dev image (1.0.0-SNAPSHOT) and apply it...
I have also come across a problem using %l for SNAPSHOT versions. Google Cloud Registry complaints about using the same tag (latest) since it already exists: ``` [ERROR] Failed to...
I'd like to bring up the possibility of offering a high level class like Scala's ZIO to model an effectful program. What do you think about it? Does it make...
> When Kotlin releases context receivers, you can also drop the `Effect` return type completely as well (including other wrappers in the return type). Resulting in clearer code and more...
@nomisRev I’ll be glad to have a look at those changes. Apart from those small details, Arrow is a fantastic library that improved noticeably with each version, congrats for the...
I've been having a look at our projects and we manually instrumented the KStream processing. However, in order to do so we injected a `brave.kafka.streams.KafkaStreamsTracing` bean and applied it in...
I was also surprised when upgraded and didn't see the traceId/spanId in the logs anymore. It'd be really helpful to document the change of behaviour and how to make it...