diff --git a/common/logger/logger.go b/common/logger/logger.go index 88ed0c29f897f13dabe2dd3979232b4e6c84b968..b648f8a0af610a7c1d0ba47df6f522e8be913e78 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 019f83d3cbbc3191712f71fc4c6b6c9c972270b2..8576930367a487269bf82d51191bb02289dd1e73 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 77a79ed091461ea5184cb2531d985c233ccd92e9..d089ed26d2810e5c5076ec4b6342cbe10d00799d 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 0e2e2d6876ee222652918cbcee1a15f1fa198b53..263bbff37eaa2f83d556a86eb978ca8dd1c4a2d4 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 b959b1e6e70be1e76a1e906ea16404f0fccf309e..4089b7302db3bbd473bfef844afc68f3246797f2 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 0bc591d29b113b57569d954e0e708cf1f19ca767..9f70d9377b54436f7b2046369a02b6e988ecdb34 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 4834459390f39912f0683dfe52f65faa72b7c26d..916230ce1585cd841d48e545e3ccaf623fd3d334 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 59a81d6e9dba14e6316a158eee94d4540348ee6b..6a7d211b496d3f6905c8a84e2f1bd648718ebb92 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 9cc7ea25cdfa6152d632f278b33285d7d38f47c9..bdd89a8793200c65646325bbefe96d63981fc736 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 c02c2ac1931213e371c40a084a3c0ee06a51629a..4ad4796c5409e39984af3ff336c2556507d15d93 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 f27e7ce8ba5ab3515f8290b208b4823872ba48a3..543ddf6c1f702de053e89fcadff2de7518f32e8e 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 7c5162670d85f661fb8460cc69537ac9b7a12a23..88895855689df42f2cd66ec158e6b8f2806ef6f0 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 2edbb6650890d6d655d8356e1c0a2979a022f0a8..52b1cce3e4618e9c2669e7a3b37256ebe6d61c41 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 d5d9e6e74858e3ec520aedee5b8ba059baf928d8..2a034390c016864f95303b12b6c56533771075f3 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 4f50c18ab61ba6faf373dfd0f831c14ae7ab6d5d..486a67e20a0736be20813226b622f1bfa5bd87c0 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" )