Skip to content

Commit

Permalink
fix :fix parseNodes
Browse files Browse the repository at this point in the history
  • Loading branch information
jackehuang committed Nov 29, 2023
1 parent d99b563 commit 863c60d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion NewLife.Redis/Clusters/RedisCluster.cs
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ public void GetNodes()
public void ParseNodes(String nodes)
{
var showLog = Nodes == null;
if (showLog) WriteLog("分析[{0}]集群节点:", Redis.Name);
if (showLog) WriteLog("分析[{0}]集群节点:", Redis?.Name);

var list = new List<ClusterNode>();
foreach (var item in nodes.Split("\r", "\n"))
Expand Down

0 comments on commit 863c60d

Please sign in to comment.