You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@dubbo.apache.org by al...@apache.org on 2024/01/13 10:16:54 UTC

(dubbo) branch 3.2 updated: Revert "DefaultProviderFirstParams add THREADPOOL_KEY" (#13648)

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 714e076284 Revert "DefaultProviderFirstParams add THREADPOOL_KEY" (#13648)
714e076284 is described below

commit 714e0762844c0a227255171e467b6b1d963043c3
Author: Albumen Kevin <jh...@gmail.com>
AuthorDate: Sat Jan 13 18:16:49 2024 +0800

    Revert "DefaultProviderFirstParams add THREADPOOL_KEY" (#13648)
---
 .../dubbo/registry/support/DefaultProviderFirstParams.java    | 11 +----------
 1 file changed, 1 insertion(+), 10 deletions(-)

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 70a862f691..0a18f2572a 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,24 +24,15 @@ 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,
-                    THREADPOOL_KEY,
-                    EXECUTOR_MANAGEMENT_MODE));
+            addAll(Arrays.asList(RELEASE_KEY, DUBBO_VERSION_KEY, METHODS_KEY, TIMESTAMP_KEY, TAG_KEY));
         }
     });