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 2021/08/29 03:07:38 UTC

[dubbo] 01/02: Change HttpBinder Scope

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

albumenj pushed a commit to branch 3.0-multi-instances
in repository https://gitbox.apache.org/repos/asf/dubbo.git

commit 211d7d62af5c470b91d6adec94f20599ce5c0772
Author: Albumen Kevin <jh...@gmail.com>
AuthorDate: Sun Aug 29 11:06:42 2021 +0800

    Change HttpBinder Scope
---
 .../src/main/java/org/apache/dubbo/remoting/http/HttpBinder.java       | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/dubbo-remoting/dubbo-remoting-http/src/main/java/org/apache/dubbo/remoting/http/HttpBinder.java b/dubbo-remoting/dubbo-remoting-http/src/main/java/org/apache/dubbo/remoting/http/HttpBinder.java
index 031139d..338283b 100644
--- a/dubbo-remoting/dubbo-remoting-http/src/main/java/org/apache/dubbo/remoting/http/HttpBinder.java
+++ b/dubbo-remoting/dubbo-remoting-http/src/main/java/org/apache/dubbo/remoting/http/HttpBinder.java
@@ -18,13 +18,14 @@ package org.apache.dubbo.remoting.http;
 
 import org.apache.dubbo.common.URL;
 import org.apache.dubbo.common.extension.Adaptive;
+import org.apache.dubbo.common.extension.ExtensionScope;
 import org.apache.dubbo.common.extension.SPI;
 import org.apache.dubbo.remoting.Constants;
 
 /**
  * HttpBinder
  */
-@SPI("jetty")
+@SPI(value = "jetty", scope = ExtensionScope.FRAMEWORK)
 public interface HttpBinder {
 
     /**