This is an automated email from the ASF dual-hosted git repository.

kimmking 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 1d9535518e DefaultProviderFirstParams add THREADPOOL_KEY (#13637)
1d9535518e is described below

commit 1d9535518e06aca72c3d2c3df0785b2463a0da91
Author: funkye <[email protected]>
AuthorDate: Sat Jan 13 01:48:14 2024 +0800

    DefaultProviderFirstParams add THREADPOOL_KEY (#13637)
    
    * DefaultProviderFirstParams add THREADPOOL_KEY
    
    * DefaultProviderFirstParams add THREADPOOL_KEY
    
    * DefaultProviderFirstParams add THREADPOOL_KEY
    
    * format
---
 .../dubbo/registry/support/DefaultProviderFirstParams.java    | 11 ++++++++++-
 1 file changed, 10 insertions(+), 1 deletion(-)

diff --git 
a/dubbo-registry/dubbo-registry-api/src/main/java/org/apache/dubbo/registry/support/DefaultProviderFirstParams.java
 
b/dubbo-registry/dubbo-registry-api/src/main/java/org/apache/dubbo/registry/support/DefaultProviderFirstParams.java
index 0a18f2572a..70a862f691 100644
--- 
a/dubbo-registry/dubbo-registry-api/src/main/java/org/apache/dubbo/registry/support/DefaultProviderFirstParams.java
+++ 
b/dubbo-registry/dubbo-registry-api/src/main/java/org/apache/dubbo/registry/support/DefaultProviderFirstParams.java
@@ -24,15 +24,24 @@ import java.util.HashSet;
 import java.util.Set;
 
 import static 
org.apache.dubbo.common.constants.CommonConstants.DUBBO_VERSION_KEY;
+import static 
org.apache.dubbo.common.constants.CommonConstants.EXECUTOR_MANAGEMENT_MODE;
 import static org.apache.dubbo.common.constants.CommonConstants.METHODS_KEY;
 import static org.apache.dubbo.common.constants.CommonConstants.RELEASE_KEY;
 import static org.apache.dubbo.common.constants.CommonConstants.TAG_KEY;
+import static org.apache.dubbo.common.constants.CommonConstants.THREADPOOL_KEY;
 import static org.apache.dubbo.common.constants.CommonConstants.TIMESTAMP_KEY;
 
 public class DefaultProviderFirstParams implements ProviderFirstParams {
     private static final Set<String> PARAMS = Collections.unmodifiableSet(new 
HashSet<String>() {
         {
-            addAll(Arrays.asList(RELEASE_KEY, DUBBO_VERSION_KEY, METHODS_KEY, 
TIMESTAMP_KEY, TAG_KEY));
+            addAll(Arrays.asList(
+                    RELEASE_KEY,
+                    DUBBO_VERSION_KEY,
+                    METHODS_KEY,
+                    TIMESTAMP_KEY,
+                    TAG_KEY,
+                    THREADPOOL_KEY,
+                    EXECUTOR_MANAGEMENT_MODE));
         }
     });
 

Reply via email to