Skip to content

Commit

Permalink
Fix retryable feign cluster interceptor match issue
Browse files Browse the repository at this point in the history
  • Loading branch information
chenzhiguo committed Feb 28, 2025
1 parent 82f9c7b commit 0d98d4b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ public class RetryableFeignClusterDefinition extends PluginDefinitionAdapter {

private static final String[] ARGUMENT_FILTER = new String[]{
"feign.Request",
"feign.Request.Options"
"feign.Request$Options"
};

@Inject(InvocationContext.COMPONENT_INVOCATION_CONTEXT)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
* @since 1.0.0
*/
@Injectable
@Extension(value = "FeignRetryableClientDefinition_v3")
@Extension(value = "FeignRetryableClientDefinition_v4")
@ConditionalOnSpringCloud4FlowControlEnabled
@ConditionalOnSpringRetry
@ConditionalOnClass(RetryableFeignClusterDefinition.TYPE_RETRYABLE_FEIGN_BLOCKING_LOADBALANCER_CLIENT)
Expand All @@ -46,7 +46,7 @@ public class RetryableFeignClusterDefinition extends PluginDefinitionAdapter {

private static final String[] ARGUMENT_FILTER = new String[]{
"feign.Request",
"feign.Request.Options"
"feign.Request$Options"
};

@Inject(InvocationContext.COMPONENT_INVOCATION_CONTEXT)
Expand Down

0 comments on commit 0d98d4b

Please sign in to comment.