From 40bc80ab052be5cbcb7db8a413631dace95397e3 Mon Sep 17 00:00:00 2001 From: maliming Date: Fri, 6 Mar 2026 16:47:25 +0800 Subject: [PATCH] fix: update OperationRateLimit to OperationRateLimiting in project references --- .../OperationRateLimitingMultiTenant_Tests.cs | 2 +- nupkg/common.ps1 | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/framework/test/Volo.Abp.OperationRateLimiting.Tests/Volo/Abp/OperationRateLimiting/OperationRateLimitingMultiTenant_Tests.cs b/framework/test/Volo.Abp.OperationRateLimiting.Tests/Volo/Abp/OperationRateLimiting/OperationRateLimitingMultiTenant_Tests.cs index fbd1a17059..b55ffbc966 100644 --- a/framework/test/Volo.Abp.OperationRateLimiting.Tests/Volo/Abp/OperationRateLimiting/OperationRateLimitingMultiTenant_Tests.cs +++ b/framework/test/Volo.Abp.OperationRateLimiting.Tests/Volo/Abp/OperationRateLimiting/OperationRateLimitingMultiTenant_Tests.cs @@ -59,7 +59,7 @@ public class OperationRateLimitingMultiTenant_Tests : OperationRateLimitingTestB { // ClientIp counters are global: requests from the same IP are counted together // regardless of which tenant context is active. - // The NullClientIpAddressProvider returns null, which resolves to "unknown" in the rule. + // The mock IWebClientInfoProvider returns "127.0.0.1" for all requests. using (_currentTenant.Change(TenantA)) { diff --git a/nupkg/common.ps1 b/nupkg/common.ps1 index edc5374c28..cb356faee4 100644 --- a/nupkg/common.ps1 +++ b/nupkg/common.ps1 @@ -237,7 +237,7 @@ $projects = ( "framework/src/Volo.Abp.Minify", "framework/src/Volo.Abp.ObjectExtending", "framework/src/Volo.Abp.ObjectMapping", - "framework/src/Volo.Abp.OperationRateLimit", + "framework/src/Volo.Abp.OperationRateLimiting", "framework/src/Volo.Abp.Quartz", "framework/src/Volo.Abp.RabbitMQ", "framework/src/Volo.Abp.RemoteServices",