This is an automated email from the ASF dual-hosted git repository.
albumenj pushed a commit to branch 3.2
in repository https://gitbox.apache.org/repos/asf/dubbo.git
The following commit(s) were added to refs/heads/3.2 by this push:
new fbf8681aa9 Rename file cache to prevent being duplicated with
CacheFilter (#11530)
fbf8681aa9 is described below
commit fbf8681aa9da5e063d856d3ca4bfa956cc319e4b
Author: Albumen Kevin <[email protected]>
AuthorDate: Tue Feb 14 13:44:15 2023 +0800
Rename file cache to prevent being duplicated with CacheFilter (#11530)
---
.../java/org/apache/dubbo/common/constants/CommonConstants.java | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git
a/dubbo-common/src/main/java/org/apache/dubbo/common/constants/CommonConstants.java
b/dubbo-common/src/main/java/org/apache/dubbo/common/constants/CommonConstants.java
index c6a6eeabe7..0bd58098eb 100644
---
a/dubbo-common/src/main/java/org/apache/dubbo/common/constants/CommonConstants.java
+++
b/dubbo-common/src/main/java/org/apache/dubbo/common/constants/CommonConstants.java
@@ -17,13 +17,13 @@
package org.apache.dubbo.common.constants;
+import org.apache.dubbo.common.URL;
+
import java.net.NetworkInterface;
import java.util.Properties;
import java.util.concurrent.ExecutorService;
import java.util.regex.Pattern;
-import org.apache.dubbo.common.URL;
-
public interface CommonConstants {
String DUBBO = "dubbo";
@@ -365,7 +365,7 @@ public interface CommonConstants {
/**
* Whether to cache locally, default is true
*/
- String REGISTRY_LOCAL_FILE_CACHE_ENABLED = "file.cache";
+ String REGISTRY_LOCAL_FILE_CACHE_ENABLED = "file-cache";
String METADATA_INFO_CACHE_EXPIRE_KEY = "metadata-info-cache.expire";