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:
authorJames Fargher <jfargher@gitlab.com>2021-11-08 01:14:02 +0300
committerJames Fargher <jfargher@gitlab.com>2021-11-08 02:21:17 +0300
commit050a9c6b63da588e2f9e01300151af2dfb3b4c8e (patch)
tree4a16fdeab49fc7226fbd5d95076360fae74bdddf /doc/gitaly-backup.md
parenta49570e725af9ece4f04dcb89760352af9f39b68 (diff)
gitaly-backup: Rename locator flag to layout
While writing docs for gitaly-backup it became clear that using the name `locator` did not make sense. This would be a breaking change except that the flag is part of an experimental feature. Changelog: changed
Diffstat (limited to 'doc/gitaly-backup.md')
-rw-r--r--doc/gitaly-backup.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/gitaly-backup.md b/doc/gitaly-backup.md
index 177643be9..cf2f1651c 100644
--- a/doc/gitaly-backup.md
+++ b/doc/gitaly-backup.md
@@ -49,8 +49,8 @@ Gitaly and Gitaly Cluster.
| `-path` | string | yes | Directory where the backup files will be created. |
| `-parallel` | integer | no | Maximum number of parallel backups. |
| `-parallel-storage` | integer | no | Maximum number of parallel backups per storage. |
- | `-id` | string | no | Used by the locator to determine a unique path for the backup when a full backup is created. |
- | `-locator` | string | no | Determines the file-system layout. Any of `legacy`, `pointer` (default `legacy`). Note: The feature is not ready for production use. |
+ | `-id` | string | no | Used to determine a unique path for the backup when a full backup is created. |
+ | `-layout` | string | no | Determines the file-system layout. Any of `legacy`, `pointer` (default `legacy`). Note: The feature is not ready for production use. |
| `-incremental` | bool | no | Determines if an incremental backup should be created. Note: The feature is not ready for production use. |
## Directly restore repository data
@@ -99,7 +99,7 @@ Gitaly and Gitaly Cluster.
| `-path` | string | yes | Directory where the backup files are stored. |
| `-parallel` | integer | no | Maximum number of parallel restores. |
| `-parallel-storage` | integer | no | Maximum number of parallel restores per storage. |
- | `-locator` | string | no | Determines the file-system layout. Any of `legacy`, `pointer` (default `legacy`). Note: The feature is not ready for production use. |
+ | `-layout` | string | no | Determines the file-system layout. Any of `legacy`, `pointer` (default `legacy`). Note: The feature is not ready for production use. |
## How Git repository backups work