From b5229018458584eb893de28c2bb76f458b8573c1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=81ukasz=20Magiera?= Date: Tue, 23 Nov 2021 16:16:27 +0100 Subject: [PATCH] update storage attach allowTo usage --- cmd/lotus-miner/storage.go | 2 +- cmd/lotus-seal-worker/storage.go | 2 +- documentation/en/cli-lotus-miner.md | 2 +- documentation/en/cli-lotus-worker.md | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/cmd/lotus-miner/storage.go b/cmd/lotus-miner/storage.go index e2c6860f9..4df6a9904 100644 --- a/cmd/lotus-miner/storage.go +++ b/cmd/lotus-miner/storage.go @@ -101,7 +101,7 @@ over time }, &cli.StringSliceFlag{ Name: "allow-to", - Usage: "group names to which data from this path can be sent (allow all if not specified)", + Usage: "path groups allowed to pull data from this path (allow all if not specified)", }, }, Action: func(cctx *cli.Context) error { diff --git a/cmd/lotus-seal-worker/storage.go b/cmd/lotus-seal-worker/storage.go index 5bd296b1a..721523fd0 100644 --- a/cmd/lotus-seal-worker/storage.go +++ b/cmd/lotus-seal-worker/storage.go @@ -57,7 +57,7 @@ var storageAttachCmd = &cli.Command{ }, &cli.StringSliceFlag{ Name: "allow-to", - Usage: "group names to which data from this path can be sent (allow all if not specified)", + Usage: "path groups allowed to pull data from this path (allow all if not specified)", }, }, Action: func(cctx *cli.Context) error { diff --git a/documentation/en/cli-lotus-miner.md b/documentation/en/cli-lotus-miner.md index a21e4fe94..bc039d743 100644 --- a/documentation/en/cli-lotus-miner.md +++ b/documentation/en/cli-lotus-miner.md @@ -1984,7 +1984,7 @@ OPTIONS: --store (for init) use path for long-term storage (default: false) --max-storage value (for init) limit storage space for sectors (expensive for very large paths!) --groups value path group names - --allow-to value group names to which data from this path can be sent (allow all if not specified) + --allow-to value path groups allowed to pull data from this path (allow all if not specified) --help, -h show help (default: false) ``` diff --git a/documentation/en/cli-lotus-worker.md b/documentation/en/cli-lotus-worker.md index dba65236e..3b0c7ae4f 100644 --- a/documentation/en/cli-lotus-worker.md +++ b/documentation/en/cli-lotus-worker.md @@ -95,7 +95,7 @@ OPTIONS: --store (for init) use path for long-term storage (default: false) --max-storage value (for init) limit storage space for sectors (expensive for very large paths!) --groups value path group names - --allow-to value group names to which data from this path can be sent (allow all if not specified) + --allow-to value path groups allowed to pull data from this path (allow all if not specified) --help, -h show help (default: false) ```