From 1ce725728d0806aa1fd5015a73bd29f9f13ccf5e Mon Sep 17 00:00:00 2001 From: chrislu Date: Mon, 19 Jun 2023 18:43:41 -0700 Subject: [PATCH] minor --- weed/shell/command_cluster_ps.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/weed/shell/command_cluster_ps.go b/weed/shell/command_cluster_ps.go index 2587db0d8..22925da5b 100644 --- a/weed/shell/command_cluster_ps.go +++ b/weed/shell/command_cluster_ps.go @@ -95,7 +95,7 @@ func (c *commandClusterPs) Do(args []string, commandEnv *CommandEnv, writer io.W filerSignatures := make(map[*master_pb.ListClusterNodesResponse_ClusterNode]int32) fmt.Fprintf(writer, "* filers %d\n", len(filerNodes)) for _, node := range filerNodes { - fmt.Fprintf(writer, " * %s (%v)\n", node.Address, node.Version) + fmt.Fprintf(writer, " * %s (%v) %v\n", node.Address, node.Version, time.Unix(0, node.CreatedAtNs).UTC()) if node.DataCenter != "" { fmt.Fprintf(writer, " DataCenter: %v\n", node.DataCenter) }