You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@dubbo.apache.org by il...@apache.org on 2021/02/03 09:29:56 UTC

[dubbo-go-samples] branch master updated: adjust sentinel version

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

iluo pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/dubbo-go-samples.git


The following commit(s) were added to refs/heads/master by this push:
     new aef62db  adjust sentinel version
aef62db is described below

commit aef62db1f6a00f63a2283fbee6d7c19280f80f92
Author: Ian Luo <ia...@gmail.com>
AuthorDate: Wed Feb 3 17:29:38 2021 +0800

    adjust sentinel version
---
 go.mod | 7 +++++--
 1 file changed, 5 insertions(+), 2 deletions(-)

diff --git a/go.mod b/go.mod
index 212156d..faa3b52 100644
--- a/go.mod
+++ b/go.mod
@@ -1,7 +1,7 @@
 module github.com/apache/dubbo-go-samples
 
 require (
-	github.com/alibaba/sentinel-golang v1.0.2
+	github.com/alibaba/sentinel-golang v0.6.2
 	github.com/apache/dubbo-go v1.5.5
 	github.com/apache/dubbo-go-hessian2 v1.7.0
 	github.com/bwmarrin/snowflake v0.3.0
@@ -21,6 +21,9 @@ require (
 	google.golang.org/grpc v1.26.0
 )
 
-replace github.com/envoyproxy/go-control-plane => github.com/envoyproxy/go-control-plane v0.8.0
+replace (
+	github.com/envoyproxy/go-control-plane => github.com/envoyproxy/go-control-plane v0.8.0
+	github.com/alibaba/sentinel-golang => github.com/alibaba/sentinel-golang v1.0.1
+)
 
 go 1.13