aboutsummaryrefslogtreecommitdiff
path: root/weed/shell/command_ec_common.go
diff options
context:
space:
mode:
authorLisandro Pin <lisandro.pin@proton.ch>2025-02-04 19:59:25 +0100
committerGitHub <noreply@github.com>2025-02-04 10:59:25 -0800
commit68f547bdf2bbb4f96d3a74e6b7038de728262afb (patch)
tree95e5f5abb63860c207c033521d0eaf06766be2df /weed/shell/command_ec_common.go
parent5e46960651b68add6be02d93f34183218d8ca431 (diff)
downloadseaweedfs-68f547bdf2bbb4f96d3a74e6b7038de728262afb.tar.xz
seaweedfs-68f547bdf2bbb4f96d3a74e6b7038de728262afb.zip
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.
Diffstat (limited to 'weed/shell/command_ec_common.go')
-rw-r--r--weed/shell/command_ec_common.go2
1 files changed, 1 insertions, 1 deletions
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
}