diff --git a/cmd/lotus-worker/cli.go b/cmd/lotus-worker/cli.go index b1501fca7..d2a81688a 100644 --- a/cmd/lotus-worker/cli.go +++ b/cmd/lotus-worker/cli.go @@ -1,6 +1,8 @@ package main import ( + "fmt" + "github.com/urfave/cli/v2" "golang.org/x/xerrors" @@ -35,9 +37,11 @@ var setCmd = &cli.Command{ } var waitQuietCmd = &cli.Command{ - Name: "wait-quiet", - Usage: "Block until all running tasks exit", + Name: "wait-quiet", + Usage: "Block until all running tasks exit", + Hidden: true, Action: func(cctx *cli.Context) error { + fmt.Println("DEPRECATED: This command will be removed in the future") api, closer, err := lcli.GetWorkerAPI(cctx) if err != nil { return err diff --git a/documentation/en/cli-lotus-worker.md b/documentation/en/cli-lotus-worker.md index 2000b1978..efa7ffd3f 100644 --- a/documentation/en/cli-lotus-worker.md +++ b/documentation/en/cli-lotus-worker.md @@ -10,15 +10,14 @@ VERSION: 1.21.0-dev COMMANDS: - run Start lotus worker - stop Stop a running lotus worker - info Print worker info - storage manage sector storage - set Manage worker settings - wait-quiet Block until all running tasks exit - resources Manage resource table overrides - tasks Manage task processing - help, h Shows a list of commands or help for one command + run Start lotus worker + stop Stop a running lotus worker + info Print worker info + storage manage sector storage + set Manage worker settings + resources Manage resource table overrides + tasks Manage task processing + help, h Shows a list of commands or help for one command GLOBAL OPTIONS: --enable-gpu-proving enable use of GPU for mining operations (default: true) [$LOTUS_WORKER_ENABLE_GPU_PROVING] @@ -167,19 +166,6 @@ OPTIONS: ``` -## lotus-worker wait-quiet -``` -NAME: - lotus-worker wait-quiet - Block until all running tasks exit - -USAGE: - lotus-worker wait-quiet [command options] [arguments...] - -OPTIONS: - --help, -h show help (default: false) - -``` - ## lotus-worker resources ``` NAME: