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/04/05 13:22:48 UTC

[dubbo-go-pixiu] branch develop updated: fix:init load balancer strategy

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

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


The following commit(s) were added to refs/heads/develop by this push:
     new f9e27cff fix:init load balancer strategy
     new a38f9ee1 Merge pull request #391 from baerwang/fix-loadbalancer
f9e27cff is described below

commit f9e27cff753237b5e368a5f912110ec42d6a1ba2
Author: baerwang <17...@qq.com>
AuthorDate: Tue Apr 5 20:25:48 2022 +0800

    fix:init load balancer strategy
---
 pkg/pluginregistry/registry.go | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/pkg/pluginregistry/registry.go b/pkg/pluginregistry/registry.go
index ee968de4..0fe4d1c6 100644
--- a/pkg/pluginregistry/registry.go
+++ b/pkg/pluginregistry/registry.go
@@ -21,6 +21,8 @@ import (
 	_ "github.com/apache/dubbo-go-pixiu/pkg/adapter/dubboregistry"
 	_ "github.com/apache/dubbo-go-pixiu/pkg/adapter/springcloud"
 	_ "github.com/apache/dubbo-go-pixiu/pkg/adapter/xds"
+	_ "github.com/apache/dubbo-go-pixiu/pkg/cluster/loadbalancer/rand"
+	_ "github.com/apache/dubbo-go-pixiu/pkg/cluster/loadbalancer/roundrobin"
 	_ "github.com/apache/dubbo-go-pixiu/pkg/filter/accesslog"
 	_ "github.com/apache/dubbo-go-pixiu/pkg/filter/auth/jwt"
 	_ "github.com/apache/dubbo-go-pixiu/pkg/filter/authority"