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 5e35cd6  Update: dubbogo/getty -> apache/dubbo-getty
5e35cd6 is described below

commit 5e35cd6bf630ea706f08d5b6b66df355018eb8fb
Author: AlexStocks <[email protected]>
AuthorDate: Tue Aug 18 10:45:21 2020 +0800

    Update: dubbogo/getty -> apache/dubbo-getty
---
 common/logger/logger.go          | 2 +-
 config/ssl_config.go             | 2 +-
 config_center/nacos/facade.go    | 2 +-
 go.mod                           | 2 +-
 go.sum                           | 2 ++
 protocol/dubbo/client.go         | 2 +-
 protocol/dubbo/listener.go       | 2 +-
 protocol/dubbo/pool.go           | 2 +-
 protocol/dubbo/readwriter.go     | 2 +-
 protocol/dubbo/server.go         | 2 +-
 registry/etcdv3/listener_test.go | 2 +-
 registry/kubernetes/registry.go  | 2 +-
 remoting/etcdv3/facade.go        | 2 +-
 remoting/zookeeper/facade.go     | 2 +-
 remoting/zookeeper/listener.go   | 2 +-
 15 files changed, 16 insertions(+), 14 deletions(-)

diff --git a/common/logger/logger.go b/common/logger/logger.go
index 88ed0c2..b648f8a 100644
--- a/common/logger/logger.go
+++ b/common/logger/logger.go
@@ -25,7 +25,7 @@ import (
 )
 
 import (
-       "github.com/dubbogo/getty"
+       "github.com/apache/dubbo-getty"
        perrors "github.com/pkg/errors"
        "go.uber.org/zap"
        "go.uber.org/zap/zapcore"
diff --git a/config/ssl_config.go b/config/ssl_config.go
index 019f83d..8576930 100644
--- a/config/ssl_config.go
+++ b/config/ssl_config.go
@@ -18,7 +18,7 @@
 package config
 
 import (
-       "github.com/dubbogo/getty"
+       "github.com/apache/dubbo-getty"
 )
 
 var (
diff --git a/config_center/nacos/facade.go b/config_center/nacos/facade.go
index 77a79ed..d089ed2 100644
--- a/config_center/nacos/facade.go
+++ b/config_center/nacos/facade.go
@@ -22,7 +22,7 @@ import (
        "time"
 )
 import (
-       "github.com/dubbogo/getty"
+       "github.com/apache/dubbo-getty"
        perrors "github.com/pkg/errors"
 )
 
diff --git a/go.mod b/go.mod
index 0e2e2d6..263bbff 100644
--- a/go.mod
+++ b/go.mod
@@ -11,7 +11,7 @@ require (
        github.com/coreos/go-systemd v0.0.0-20190719114852-fd7a80b32e1f // 
indirect
        github.com/creasty/defaults v1.3.0
        github.com/docker/go-connections v0.4.0 // indirect
-       github.com/dubbogo/getty v1.3.9
+       github.com/apache/dubbo-getty v1.3.10
        github.com/dubbogo/go-zookeeper v1.0.1
        github.com/dubbogo/gost v1.9.1
        github.com/elazarl/go-bindata-assetfs v1.0.0 // indirect
diff --git a/go.sum b/go.sum
index b959b1e..4089b73 100644
--- a/go.sum
+++ b/go.sum
@@ -72,6 +72,8 @@ github.com/alecthomas/template 
v0.0.0-20160405071501-a0175ee3bccc/go.mod h1:LOuy
 github.com/alecthomas/units v0.0.0-20151022065526-2efee857e7cf/go.mod 
h1:ybxpYRFXyAe+OPACYpWeL0wqObRcbAqCMya13uyzqw0=
 github.com/aliyun/alibaba-cloud-sdk-go v1.61.18 
h1:zOVTBdCKFd9JbCKz9/nt+FovbjPFmb7mUnp8nH9fQBA=
 github.com/aliyun/alibaba-cloud-sdk-go v1.61.18/go.mod 
h1:v8ESoHo4SyHmuB4b1tJqDHxfTGEciD+yhvOU/5s1Rfk=
+github.com/apache/dubbo-getty v1.3.10 
h1:ys5mwjPdxG/KwkPjS6EI0RzQtU6p6FCPoKpaFEzpAL0=
+github.com/apache/dubbo-getty v1.3.10/go.mod 
h1:x6rraK01BL5C7jUM2fPl5KMkAxLVIx54ZB8/XEOik9Y=
 github.com/apache/dubbo-go-hessian2 v1.6.1 
h1:mFKeCZzaCkk4mMOyP+LQ85GHbRyqKT7858KS21JQYA4=
 github.com/apache/dubbo-go-hessian2 v1.6.1/go.mod 
h1:7rEw9guWABQa6Aqb8HeZcsYPHsOS7XT1qtJvkmI6c5w=
 github.com/apache/dubbo-go-hessian2 v1.6.2 
h1:i7F5GjVaUatLQz1x9vUmmSIFj49L8J6rVICdF6xw4qw=
diff --git a/protocol/dubbo/client.go b/protocol/dubbo/client.go
index 0bc591d..9f70d93 100644
--- a/protocol/dubbo/client.go
+++ b/protocol/dubbo/client.go
@@ -26,7 +26,7 @@ import (
 
 import (
        hessian "github.com/apache/dubbo-go-hessian2"
-       "github.com/dubbogo/getty"
+       "github.com/apache/dubbo-getty"
        gxsync "github.com/dubbogo/gost/sync"
        perrors "github.com/pkg/errors"
        "go.uber.org/atomic"
diff --git a/protocol/dubbo/listener.go b/protocol/dubbo/listener.go
index 4834459..916230c 100644
--- a/protocol/dubbo/listener.go
+++ b/protocol/dubbo/listener.go
@@ -28,7 +28,7 @@ import (
 
 import (
        "github.com/apache/dubbo-go-hessian2"
-       "github.com/dubbogo/getty"
+       "github.com/apache/dubbo-getty"
        "github.com/opentracing/opentracing-go"
        perrors "github.com/pkg/errors"
 )
diff --git a/protocol/dubbo/pool.go b/protocol/dubbo/pool.go
index 59a81d6..6a7d211 100644
--- a/protocol/dubbo/pool.go
+++ b/protocol/dubbo/pool.go
@@ -28,7 +28,7 @@ import (
 )
 
 import (
-       "github.com/dubbogo/getty"
+       "github.com/apache/dubbo-getty"
        perrors "github.com/pkg/errors"
 )
 
diff --git a/protocol/dubbo/readwriter.go b/protocol/dubbo/readwriter.go
index 9cc7ea2..bdd89a8 100644
--- a/protocol/dubbo/readwriter.go
+++ b/protocol/dubbo/readwriter.go
@@ -24,7 +24,7 @@ import (
 
 import (
        "github.com/apache/dubbo-go-hessian2"
-       "github.com/dubbogo/getty"
+       "github.com/apache/dubbo-getty"
        perrors "github.com/pkg/errors"
 )
 
diff --git a/protocol/dubbo/server.go b/protocol/dubbo/server.go
index c02c2ac..4ad4796 100644
--- a/protocol/dubbo/server.go
+++ b/protocol/dubbo/server.go
@@ -24,7 +24,7 @@ import (
 )
 
 import (
-       "github.com/dubbogo/getty"
+       "github.com/apache/dubbo-getty"
        "github.com/dubbogo/gost/sync"
        "gopkg.in/yaml.v2"
 )
diff --git a/registry/etcdv3/listener_test.go b/registry/etcdv3/listener_test.go
index f27e7ce..543ddf6 100644
--- a/registry/etcdv3/listener_test.go
+++ b/registry/etcdv3/listener_test.go
@@ -25,7 +25,7 @@ import (
 
 import (
        "github.com/coreos/etcd/embed"
-       "github.com/dubbogo/getty"
+       "github.com/apache/dubbo-getty"
        "github.com/stretchr/testify/suite"
 )
 
diff --git a/registry/kubernetes/registry.go b/registry/kubernetes/registry.go
index 7c51626..8889585 100644
--- a/registry/kubernetes/registry.go
+++ b/registry/kubernetes/registry.go
@@ -26,7 +26,7 @@ import (
 )
 
 import (
-       "github.com/dubbogo/getty"
+       "github.com/apache/dubbo-getty"
        "github.com/dubbogo/gost/net"
        perrors "github.com/pkg/errors"
        v1 "k8s.io/api/core/v1"
diff --git a/remoting/etcdv3/facade.go b/remoting/etcdv3/facade.go
index 2edbb66..52b1cce 100644
--- a/remoting/etcdv3/facade.go
+++ b/remoting/etcdv3/facade.go
@@ -23,7 +23,7 @@ import (
 )
 
 import (
-       "github.com/dubbogo/getty"
+       "github.com/apache/dubbo-getty"
        perrors "github.com/pkg/errors"
 )
 
diff --git a/remoting/zookeeper/facade.go b/remoting/zookeeper/facade.go
index d5d9e6e..2a03439 100644
--- a/remoting/zookeeper/facade.go
+++ b/remoting/zookeeper/facade.go
@@ -21,7 +21,7 @@ import (
        "sync"
 )
 import (
-       "github.com/dubbogo/getty"
+       "github.com/apache/dubbo-getty"
        perrors "github.com/pkg/errors"
 )
 
diff --git a/remoting/zookeeper/listener.go b/remoting/zookeeper/listener.go
index 4f50c18..486a67e 100644
--- a/remoting/zookeeper/listener.go
+++ b/remoting/zookeeper/listener.go
@@ -25,7 +25,7 @@ import (
 )
 
 import (
-       "github.com/dubbogo/getty"
+       "github.com/apache/dubbo-getty"
        "github.com/dubbogo/go-zookeeper/zk"
        perrors "github.com/pkg/errors"
 )

Reply via email to