Lorenzo Benvenuti
Lorenzo Benvenuti
It did the trick, thank you very much! I tried `oracle.jdbc.datasource.impl.OracleDataSource` efore but I didn't think to try with the driver class too. Thanks!
It turns out that implementing this feature is harder than I thought: I didn't notice that `X509IdentityProvider` is defined in the `quarkus-security` module and it doesn't have access to `RoutingContext`...
Another (hack-ish) option: add this bean to the `vertx-http` module ```java @Priority(1000) public class RoutingContextAwareX509IdentityProvider extends X509IdentityProvider { @Override public Uni authenticate(CertificateAuthenticationRequest request, AuthenticationRequestContext context) { final Uni authenticate =...
Hi @sberyozkin yes, actually that's what we're doing right now. I was just wondering if someone else could benefit from moving this class to the framework, but probably it's a...
Thank you, it totally makes sense. Anyway, that doesn't explain why after pushing the image `localhost:5000/lorenzo/ubuntu:2.0` (which actually has the same digest of the deleted one, being another tag of...
``` $ docker run -d -p 5000:5000 -e REGISTRY_STORAGE_DELETE_ENABLED=true -v /home/lorenzo/registry:/var/lib/registry --name reg registry:2.5.1 $ tree registry/ registry/ 0 directories, 0 files $ docker tag ubuntu:latest localhost:5000/lorenzo/ubuntu:1.0 $ docker push...
Removing `repositories/lorenzo/ubuntu/_layers/sha256/*` doesn't help; I tried to repeat the above steps on a fresh registry and removed the `sha256` directory content: ``` $ sudo rm -rf registry/docker/registry/v2/repositories/lorenzo/ubuntu/_layers/sha256/* $ docker tag...
> Java has the restriction that a native library can only be loaded by a single classloader. Unfortunately, we cannot change that behavior. When using a test profile, you end...
Hi, I'm still experiencing this issue with Faststream 0.47.0. ```python from typing import Any, Dict from faststream import FastStream from faststream.kafka import KafkaBroker from faststream.kafka.annotations import ( KafkaMessage, Logger )...
Thanks @Lancetnik @kumaranvpl . You can reproduce the issue with [this](https://github.com/lorenzobenvenuti/faststream-manual-commit) application.