Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitaly.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEvan Read <eread@gitlab.com>2023-08-17 12:20:05 +0300
committerSami Hiltunen <shiltunen@gitlab.com>2023-08-17 12:20:05 +0300
commitdfd8c9f938af4841c9589787687b88dcccc685df (patch)
tree0666ce2046ca7712f4f02c6d76970a24d5233507
parentbdf67f3a5687a6be53eb33ce42f78df3ea011cc9 (diff)
Edit help text for list-untracked-repositories subcommand
-rw-r--r--internal/cli/praefect/subcmd_list_untracked_repositories.go22
1 files changed, 15 insertions, 7 deletions
diff --git a/internal/cli/praefect/subcmd_list_untracked_repositories.go b/internal/cli/praefect/subcmd_list_untracked_repositories.go
index a84ac43bc..065a6cc91 100644
--- a/internal/cli/praefect/subcmd_list_untracked_repositories.go
+++ b/internal/cli/praefect/subcmd_list_untracked_repositories.go
@@ -23,13 +23,21 @@ func newListUntrackedRepositoriesCommand() *cli.Command {
return &cli.Command{
Name: "list-untracked-repositories",
Usage: "list untracked repositories",
- Description: "This command checks whether all repositories on all Gitaly nodes are tracked by Praefect.\n" +
- "If a repository is found on the disk, but it is not known to Praefect, then the location of\n" +
- "that repository will be written to the standard output stream in JSON format.\n" +
- "NOTE:\n" +
- "All errors and log messages are written to the standard error stream.\n" +
- "The output is produced as the new data appears, it doesn't wait\n" +
- "for the completion of the processing to produce the result.\n",
+ Description: `List repositories located on physical storages but not tracked by Praefect.
+
+By default, does not list untracked repositories that are newer than 6 hours.
+
+Returns:
+
+- Details untracked repositories to stdout, including the repository's relative path, physical storage
+ name, and virtual storage name.
+- All errors and log messages to stderr. The output is produced as new data appears. The command doesn't wait to
+ to complete processing before producing a result.
+
+Examples:
+
+- praefect --config praefect.config.toml list-untracked-repositories
+- praefect --config praefect.config.toml list-untracked-repositories --older-than 1s`,
HideHelpCommand: true,
Action: listUntrackedRepositoriesAction,
Flags: []cli.Flag{