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:
authorWill Chandler <wchandler@gitlab.com>2022-07-25 22:55:41 +0300
committerWill Chandler <wchandler@gitlab.com>2022-08-31 22:56:17 +0300
commited83328c18b4bc5e0c7d81211191b8cd9326ea69 (patch)
tree6d0bebd4a42ed79242fb4fb6756183811e32e84d
parentc3718f5f9a3285ad8d99b4e3383edc13b1546fda (diff)
praefect: Fix typo in track-repository help string
Correct spelling of 'executed' in help string for `track-repository` subcommand.
-rw-r--r--cmd/praefect/subcmd_track_repository.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/praefect/subcmd_track_repository.go b/cmd/praefect/subcmd_track_repository.go
index e54ff3ca1..7db144515 100644
--- a/cmd/praefect/subcmd_track_repository.go
+++ b/cmd/praefect/subcmd_track_repository.go
@@ -54,7 +54,7 @@ func (cmd *trackRepository) FlagSet() *flag.FlagSet {
" It checks if the repository exists on disk on the authoritative storage,\n" +
" and whether database records are absent from tracking the repository.\n" +
" If -replicate-immediately is used, the command will attempt to replicate the repository to the secondaries.\n" +
- " Otherwise, replication jobs will be created and will be excuted eventually by Praefect itself.\n")
+ " Otherwise, replication jobs will be created and will be executed eventually by Praefect itself.\n")
fs.PrintDefaults()
}
return fs