Jose A. Iñigo
Jose A. Iñigo
I have a Spring Boot 1.5.13 + Thymeleaf 3.0.9 + Thymeleaf-extras-springsecurity4 3.0.2 application that uses a custom SecurityExpressionHandler. When it is evaluating a sec:authorize expression it looks for a SecurityExpressionHandler...
### Description Let's suppose I have a Jenkins pipeline pipeline with two stages deploy-staging and deploy-pro. `sh "./mvnw fabric8:resource"` generates a kubernetes.yaml file with this number of replicas: ``` spec:...
According to the documentation we can specify different serializers/deserializers for producers/consumers in the configuration, e.g: ``` kafka: producers: xxx: value: serializer: org.apache.kafka.common.serialization.ByteArrayDeserializer ``` In order to use with Avro we...
The following Stackoverflow question refered to the slowness of first requests made with a `WebClient`: https://stackoverflow.com/questions/53943499/workaround-for-the-slowness-of-the-webclient-first-request I opened a an issue in [reactor netty's repo](https://github.com/reactor/reactor-netty/issues/560) which has been recently solved,...
### Summary I'm using [an OIDC Provider](https://github.com/panva/node-oidc-provider) that supports [OIDC Back-channel Logout Spec](https://openid.net/specs/openid-connect-backchannel-1_0.html). However the current version of Spring Security doesn't implement this functionality. ### Actual Behavior There's no way...
This [Stackoverflow question](https://stackoverflow.com/questions/74666562/how-to-instrument-spring-boot-3-x-with-spring-cloud-stream-4-x-producers-and-con) addresses how to configure SCS producers and consumers to automatically propagate the tracing information (traceId, spanId). There's no info about the consumer side. At the moment there's...
### Summary I need to customize the behavior of the reactive method security expression handler. In the non reactive version this could be done extending `GlobalMethodSecurityConfiguration` as stated in the...
Native image generation fails when adding a dependency with io.micronaut.gcp:micronaut-gcp-tracing
### Expected Behavior A native image should be generated ### Actual Behaviour The following error is shown: ``` [application:29] analysis: 53,123.08 ms, 4.90 GB Error: Classes that should be initialized...
On Embabel 0.1.3, when I adapt the Researcher.kt sample to force a negative Critique, the planner: 1. does not choose the expected retry path (redoResearchWithGpt4 → mergeReports → critiqueMergedReport), and...
Since agent tasks can often be long-running, it’s important to handle graceful shutdowns properly — ensuring that in-flight requests have enough time to complete before termination. I’ve adapted a demo...