[#1684] cli: Fix description of 'control shards writecache seal'
All checks were successful
DCO action / DCO (pull_request) Successful in 37s
Vulncheck / Vulncheck (pull_request) Successful in 59s
Build / Build Components (pull_request) Successful in 1m26s
Pre-commit hooks / Pre-commit (pull_request) Successful in 1m31s
Tests and linters / Run gofumpt (pull_request) Successful in 3m11s
Tests and linters / Lint (pull_request) Successful in 3m31s
Tests and linters / Tests (pull_request) Successful in 3m35s
Tests and linters / Staticcheck (pull_request) Successful in 3m34s
Tests and linters / Tests with -race (pull_request) Successful in 5m10s
Tests and linters / gopls check (pull_request) Successful in 6m1s

Signed-off-by: Alexander Chuprov <a.chuprov@yadro.com>
This commit is contained in:
Alexander Chuprov 2025-03-18 10:24:38 +03:00
parent 54ef71a92f
commit b23e10b285
Signed by: achuprov
GPG key ID: 2D916FFD803B0EDD

View file

@ -24,7 +24,7 @@ var writecacheShardCmd = &cobra.Command{
var sealWritecacheShardCmd = &cobra.Command{
Use: "seal",
Short: "Flush objects from write-cache and move write-cache to degraded read only mode.",
Long: "Flush all the objects from the write-cache to the main storage and move the write-cache to the degraded read only mode: write-cache will be empty and no objects will be put in it.",
Long: "Flush all the objects from the write-cache to the main storage and move the write-cache to the CLOSED mode: write-cache will be empty and no objects will be put in it.",
Run: sealWritecache,
}