From 68f547bdf2bbb4f96d3a74e6b7038de728262afb Mon Sep 17 00:00:00 2001 From: Lisandro Pin Date: Tue, 4 Feb 2025 19:59:25 +0100 Subject: [PATCH] Nit: fix missing newline on EC balancing warnings regarding replica settings (#6509) Nit: fix missing newline on EC balancing warnings regarding replica settings. See 79136812. --- weed/shell/command_ec_common.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/weed/shell/command_ec_common.go b/weed/shell/command_ec_common.go index 0affc7365..71bc37415 100644 --- a/weed/shell/command_ec_common.go +++ b/weed/shell/command_ec_common.go @@ -195,7 +195,7 @@ func parseReplicaPlacementArg(commandEnv *CommandEnv, replicaStr string) (*super } if !rp.HasReplication() { - fmt.Printf("WARNING: replica placement type %q is empty!", rp.String()) + fmt.Printf("WARNING: replica placement type %q is empty!\n", rp.String()) } return rp, nil }