Ver Fonte

增加cws地址校验

张亚军 há 1 mês atrás
pai
commit
5ba52f936a
1 ficheiros alterados com 1 adições e 1 exclusões
  1. 1 1
      ng_cws_client/ng_cws_client.go

+ 1 - 1
ng_cws_client/ng_cws_client.go

@@ -16,7 +16,7 @@ var cwsUrl string
 var cwsTimeOut time.Duration
 
 func Init(url string, timeout time.Duration) error {
-	if utils.IsStringEmpty(cwsUrl) {
+	if utils.IsStringEmpty(url) {
 		return errors.New("未配置CWS地址")
 	}