Sergei Korneev

Results 22 comments of Sergei Korneev

@WilliamStanton can you provide simple reproducible example?

@ramgom try to use dismiss404(): ``` val userClient = Feign.builder() .dismiss404() .encoder(JacksonEncoder(objectMapper)) .decoder(OptionalDecoder(JacksonDecoder(objectMapper))) .target(UserClient::class.java, BASE_URL) ``` I think it should help you.

It looks like `@AuthenticationPrincipal` is not supported. See: https://github.com/OpenFeign/feign/tree/master/spring4#currently-supported-annotation-processing

As I see PR was opened 2 weeks ago. https://github.com/OpenFeign/feign-form/pull/120 It should fix your problem.

> @Headers(value = {" content-type : application/x-www-form-urlencoded "}) > jaxrs version: 3.0.7.Final feign version: 11.10 > > I want to use @FormParam to pass arguments, and this is my code...

Not sure that it's what I mean. Sometimes I see that container is up and all processes are running, but I can't connect to the container from another container (with...

As I see you use reactor in your project. Try to use [feign-reactive](https://github.com/PlaytikaOSS/feign-reactive) if it's possible.

Not sure if this will work. Since feign client is part of another library, there may be some client, connection pool, or thread pool configuration gaps. Try creating an issue...

You can find documentation here: https://github.com/OpenFeign/feign?tab=readme-ov-file#async-execution-via-completablefuture Also there is a library for reactive code: https://github.com/PlaytikaOSS/feign-reactive

> Hey, I see the same issue after upgrade from Expo 52 to Expo 53 with "react-native-google-mobile-ads": "^14.11.0", > > ``` > Samsung Galaxy A13 5G Android 14 (SDK 34)...