Skip to content

Commit

Permalink
Merge pull request #10331 from filecoin-project/fix/deprecate-wait-quiet
Browse files Browse the repository at this point in the history
fix: worker: Hide `wait-quiet` cmd
  • Loading branch information
magik6k authored Feb 28, 2023
2 parents 8142aaa + ab6aaf5 commit 8076101
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 24 deletions.
8 changes: 6 additions & 2 deletions cmd/lotus-worker/cli.go
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
package main

import (
"fmt"

"github.com/urfave/cli/v2"
"golang.org/x/xerrors"

Expand Down Expand Up @@ -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
Expand Down
30 changes: 8 additions & 22 deletions documentation/en/cli-lotus-worker.md
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down Expand Up @@ -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:
Expand Down

0 comments on commit 8076101

Please sign in to comment.