You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Then the client's feign.Target.name (feign.Target.HardCodedTarget) would not be equal to ReactiveFeignClient.name: HardCodedTarget(type=Client, url=http://google.com, name=http://google.com)
However, if I specify only name without url attribute in @ReactiveFeignClient annotation
If I specify
name
andurl
attributes in@ReactiveFeignClient
annotationThen the client's
feign.Target.name
(feign.Target.HardCodedTarget
) would not be equal toReactiveFeignClient.name
:HardCodedTarget(type=Client, url=http://google.com, name=http://google.com)
However, if I specify only
name
withouturl
attribute in@ReactiveFeignClient
annotationthen the client's
feign.Target
would look like:HardCodedTarget(type=Client, url=http://clientName, name=clientName)
Why, if I specify both
name
andurl
attributes,Target.name
is not equal toReactiveFeignClient.name
?The text was updated successfully, but these errors were encountered: