Kevin Davis
Kevin Davis
Ok. Let me noodle on it a bit. I’ll see what I can think up.
@Klaboe, @sguillope There is, however it's a bit of a sledgehammer. You can provide a custom `Param.Expander` instance on `@Param` annotation, but again, that's only for vanilla Feign. The Spring...
@Harishrv You will need to reach out to Spring Cloud OpenFeign for this one. They own that encoder.
From a URI stand point, `=` and `%3D` are the same. That goes for `,` and `%2C`, as both of those characters are in the reserved set per RFC 3986....
This is expected. We do not support mixing `@Param` and `@QueryMap` using the `Bean` specification currently. The models are effectively incompatible. In the meantime, my suggestion is to use a...
Time is a friend here. I’ll revisit this.
We'll need to look into this more, but if anyone here is interested in taking this up, please do.
`IOExceptions` that occur during the encoding and decoding phases do not trigger a request retry, they are outside of the scope of the client execution. Also, as defined in the...
I've looked into this and created an alternative implementation in our experimental project: https://github.com/OpenFeign/feignx/pull/45 The approach relies on `Conditions`, which evaluate the results of the request. This allows for retrying...
At the moment, this sort of capability is the responsibility of the User, not Feign, since this type of use case is tightly coupled to the user's needs. However, I'm...