From 9aa2bc8f74c2058c7c310a1cb5bab103562109df Mon Sep 17 00:00:00 2001 From: Joe Zou <yixian.zou@gmail.com> Date: Tue, 11 Aug 2020 12:03:35 +0800 Subject: [PATCH] fix review comment --- protocol/dubbo/config.go | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/protocol/dubbo/config.go b/protocol/dubbo/config.go index f9e959951..3e0199d00 100644 --- a/protocol/dubbo/config.go +++ b/protocol/dubbo/config.go @@ -22,7 +22,7 @@ import ( ) import ( - "github.com/dubbogo/getty" + "github.com/apache/dubbo-go/config" perrors "github.com/pkg/errors" ) @@ -182,7 +182,7 @@ func (c *ClientConfig) CheckValidity() error { if c.heartbeatPeriod >= time.Duration(config.MaxWheelTimeSpan) { return perrors.WithMessagef(err, "heartbeat_period %s should be less than %s", - c.HeartbeatPeriod, time.Duration(getty.MaxWheelTimeSpan)) + c.HeartbeatPeriod, time.Duration(config.MaxWheelTimeSpan)) } if c.sessionTimeout, err = time.ParseDuration(c.SessionTimeout); err != nil { @@ -200,9 +200,9 @@ func (c *ServerConfig) CheckValidity() error { return perrors.WithMessagef(err, "time.ParseDuration(SessionTimeout{%#v})", c.SessionTimeout) } - if c.sessionTimeout >= time.Duration(getty.MaxWheelTimeSpan) { + if c.sessionTimeout >= time.Duration(config.MaxWheelTimeSpan) { return perrors.WithMessagef(err, "session_timeout %s should be less than %s", - c.SessionTimeout, time.Duration(getty.MaxWheelTimeSpan)) + c.SessionTimeout, time.Duration(config.MaxWheelTimeSpan)) } return perrors.WithStack(c.GettySessionParam.CheckValidity()) -- GitLab