Browse Source

fix: update OperationRateLimit to OperationRateLimiting in project references

pull/25024/head
maliming 4 weeks ago
parent
commit
40bc80ab05
No known key found for this signature in database GPG Key ID: A646B9CB645ECEA4
  1. 2
      framework/test/Volo.Abp.OperationRateLimiting.Tests/Volo/Abp/OperationRateLimiting/OperationRateLimitingMultiTenant_Tests.cs
  2. 2
      nupkg/common.ps1

2
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 // ClientIp counters are global: requests from the same IP are counted together
// regardless of which tenant context is active. // 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)) using (_currentTenant.Change(TenantA))
{ {

2
nupkg/common.ps1

@ -237,7 +237,7 @@ $projects = (
"framework/src/Volo.Abp.Minify", "framework/src/Volo.Abp.Minify",
"framework/src/Volo.Abp.ObjectExtending", "framework/src/Volo.Abp.ObjectExtending",
"framework/src/Volo.Abp.ObjectMapping", "framework/src/Volo.Abp.ObjectMapping",
"framework/src/Volo.Abp.OperationRateLimit", "framework/src/Volo.Abp.OperationRateLimiting",
"framework/src/Volo.Abp.Quartz", "framework/src/Volo.Abp.Quartz",
"framework/src/Volo.Abp.RabbitMQ", "framework/src/Volo.Abp.RabbitMQ",
"framework/src/Volo.Abp.RemoteServices", "framework/src/Volo.Abp.RemoteServices",

Loading…
Cancel
Save