Skip to content

Commit

Permalink
fix(templates): fix pre configured wrapper
Browse files Browse the repository at this point in the history
  • Loading branch information
colinin committed Jun 5, 2024
1 parent af99b8d commit d60a57b
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -416,7 +416,7 @@ private void ConfigureWrapper()

private void PreConfigureWrapper()
{
Configure<AbpHttpClientBuilderOptions>(options =>
PreConfigure<AbpHttpClientBuilderOptions>(options =>
{
// http服务间调用发送不需要包装结果的请求头
options.ProxyClientActions.Add(
Expand All @@ -426,7 +426,7 @@ private void PreConfigureWrapper()
});
});

Configure<AbpDaprClientProxyOptions>(options =>
PreConfigure<AbpDaprClientProxyOptions>(options =>
{
// dapr服务间调用发送不需要包装结果的请求头
options.ProxyRequestActions.Add(
Expand Down

0 comments on commit d60a57b

Please sign in to comment.