Michał Szynkiewicz

Results 21 comments of Michał Szynkiewicz

for building the client in the reactive version, is there any reason for not using `ClientBuilder.newClient().register(new ClientRequestLogger()).register(new ClientResponseLogger());` to create the client?

CC @FroMage @geoand

@vladykin Thank you for your report! A workaround, if you cannot add a scope-defining annotation on the interceptor class, would be to subclass it and add the annotations on the...

I took a deeper look into it and it's not trivial to implement. Moreover, I believe the workaround above should let users handle all their use cases. Please let me...

I understand it's more convenient in some cases, I'm not closing this issue. What I wanted to say is that, having a work around, and being non-trivial, I don't consider...

I believe the proper fix is to add support for reading the trust store from classpath. But it requires changes in Quarkus. I added a comment to the issue and...

A load balancer with circuit breaker should be relatively simple to implement and it's definitely worth it. I'm not sure Stork is a good place to implement automatic retry on...

Usually circuit breaker is just about whether the communication with a remote endpoint should be allowed or not. It keeps `open`, `half-open` or `closed` state for an endpoint (in MP...