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 2022/02/24 11:02:05 UTC

[dubbo-go-pixiu] branch develop-0.5.0 updated: add https https factory

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

alexstocks pushed a commit to branch develop-0.5.0
in repository https://gitbox.apache.org/repos/asf/dubbo-go-pixiu.git


The following commit(s) were added to refs/heads/develop-0.5.0 by this push:
     new e72fd37  add https https factory
     new 54c8614  Merge pull request #368 from ztelur/bugfix-https
e72fd37 is described below

commit e72fd3702f9ff0a369ed9972697bcc9a2682b150
Author: Randy <zt...@gmail.com>
AuthorDate: Thu Feb 24 15:35:36 2022 +0800

    add https https factory
---
 pkg/listener/http/http_listener.go | 1 +
 1 file changed, 1 insertion(+)

diff --git a/pkg/listener/http/http_listener.go b/pkg/listener/http/http_listener.go
index 259b30d..6c0e4bf 100644
--- a/pkg/listener/http/http_listener.go
+++ b/pkg/listener/http/http_listener.go
@@ -40,6 +40,7 @@ import (
 
 func init() {
 	listener.SetListenerServiceFactory(model.ProtocolTypeHTTP, newHttpListenerService)
+	listener.SetListenerServiceFactory(model.ProtocolTypeHTTPS, newHttpListenerService)
 }
 
 type (