diff --git a/go.mod b/go.mod
index 960bf45005b05f6baf7a59a8acfa4f01e0c33f98..f3cc4183b33eaf63666b2731ad1501288be6ec43 100644
--- a/go.mod
+++ b/go.mod
@@ -1,5 +1,6 @@
module github.com/apache/dubbo-go
+go 1.14
require (
cloud.google.com/go v0.39.0 // indirect
diff --git a/protocol/dubbo/pool.go b/protocol/dubbo/pool.go
index cb1960a756e884ac8bdb245595d1b34ce1cf0c50..67a9c50a59f292c0250708724c4acfb211b00497 100644
--- a/protocol/dubbo/pool.go
+++ b/protocol/dubbo/pool.go
@@ -60,6 +60,7 @@ func newGettyRPCClientConn(pool *gettyRPCClientPool, protocol, addr string) (*ge
getty.WithServerAddress(addr),
getty.WithConnectionNumber((int)(pool.rpcClient.conf.ConnectionNum)),
getty.WithReconnectInterval(pool.rpcClient.conf.ReconnectInterval),
+ getty.WithClientSslEnabled(pool.sslEnabled),
getty.WithClientTlsConfigBuilder(config.GetClientTlsConfigBuilder()),
)
} else {