This commit is contained in:
Andrew Jackson (Ajax) 2023-05-08 12:22:25 -05:00
parent 6a66a11e54
commit 30fae764ae
2 changed files with 5 additions and 4 deletions

View File

@ -276,9 +276,10 @@ var runCmd = &cli.Command{
Value: "30s",
},
&cli.BoolFlag{
Name: "data-cid",
Usage: "Run the data-cid task. true|false (default: inherits --addpiece)",
Value: true,
Name: "data-cid",
Usage: "Run the data-cid task. true|false ",
Value: true,
DefaultText: "inherits --addpiece",
},
},
Before: func(cctx *cli.Context) error {

View File

@ -38,7 +38,7 @@ USAGE:
OPTIONS:
--addpiece enable addpiece (default: true) [$LOTUS_WORKER_ADDPIECE]
--commit enable commit (default: true) [$LOTUS_WORKER_COMMIT]
--data-cid Run the data-cid task. --add-piece defaults this to true unless overridden (default: true)
--data-cid Run the data-cid task. true|false (default: inherits --addpiece)
--http-server-timeout value (default: "30s")
--listen value host address and port the worker api will listen on (default: "0.0.0.0:3456") [$LOTUS_WORKER_LISTEN]
--name value custom worker name (default: hostname) [$LOTUS_WORKER_NAME]