From d37daa5758d30e96c1ddb081b1473fcf2bd0f07d Mon Sep 17 00:00:00 2001 From: liangshiwei Date: Thu, 8 Sep 2022 17:47:32 +0800 Subject: [PATCH] Make NormalizeKey method virtual --- .../Volo/Abp/DistributedLocking/DistributedLockKeyNormalizer.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/framework/src/Volo.Abp.DistributedLocking.Abstractions/Volo/Abp/DistributedLocking/DistributedLockKeyNormalizer.cs b/framework/src/Volo.Abp.DistributedLocking.Abstractions/Volo/Abp/DistributedLocking/DistributedLockKeyNormalizer.cs index 745c63223f..bce237c5e3 100644 --- a/framework/src/Volo.Abp.DistributedLocking.Abstractions/Volo/Abp/DistributedLocking/DistributedLockKeyNormalizer.cs +++ b/framework/src/Volo.Abp.DistributedLocking.Abstractions/Volo/Abp/DistributedLocking/DistributedLockKeyNormalizer.cs @@ -12,7 +12,7 @@ public class DistributedLockKeyNormalizer : IDistributedLockKeyNormalizer, ITran Options = options.Value; } - public string NormalizeKey(string name) + public virtual string NormalizeKey(string name) { return $"{Options.KeyPrefix}{name}"; }