Browse Source

修改返回值

yjp 3 years ago
parent
commit
ed608760c7
1 changed files with 1 additions and 1 deletions
  1. 1 1
      dapr.go

+ 1 - 1
dapr.go

@@ -18,7 +18,7 @@ func GetInstance() *Client {
 	if clientInstance == nil {
 		client, err := newClient(clientTimeoutSec)
 		if err != nil {
-			panic(err)
+			return nil
 		}
 
 		clientInstance = client