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 2020/01/25 14:26:14 UTC

[dubbo-go] branch develop updated: Mod: go fmt

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.git


The following commit(s) were added to refs/heads/develop by this push:
     new e019139  Mod: go fmt
e019139 is described below

commit e019139db0d7bafdc72540752f208628542ef0b1
Author: AlexStocks <al...@foxmail.com>
AuthorDate: Sat Jan 25 22:25:41 2020 +0800

    Mod: go fmt
---
 cluster/loadbalance/round_robin.go | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/cluster/loadbalance/round_robin.go b/cluster/loadbalance/round_robin.go
index ebdd453..4d03999 100644
--- a/cluster/loadbalance/round_robin.go
+++ b/cluster/loadbalance/round_robin.go
@@ -41,7 +41,7 @@ const (
 )
 
 var (
-	methodWeightMap sync.Map   // [string]invokers
+	methodWeightMap sync.Map          // [string]invokers
 	state           = int32(COMPLETE) // update lock acquired ?
 	recyclePeriod   = 60 * time.Second.Nanoseconds()
 )