Use proper casing in backup_compression_algorithm doc

Docs were stating to set to "None" to disable compression, but currently
that option is case sensitive and needs to be set to "none".

Partial-bug: #1823852

Change-Id: I38c6dacf3bd2a750085da4b48ab9dcfc2ecb0b93
Signed-off-by: Sean McGinnis <sean.mcginnis@gmail.com>
This commit is contained in:
Sean McGinnis 2019-04-10 12:54:42 -05:00
parent 698b522a57
commit 333e83b8a4
No known key found for this signature in database
GPG Key ID: CE7EE4BFAF8D70C8
2 changed files with 2 additions and 2 deletions

View File

@ -53,7 +53,7 @@ backup_opts = [
choices=['none', 'off', 'no',
'zlib', 'gzip',
'bz2', 'bzip2'],
help='Compression algorithm (None to disable)'),
help='Compression algorithm ("none" to disable)'),
]
CONF = cfg.CONF

View File

@ -133,7 +133,7 @@ appropriate for your environment:
backup_sha_block_size_bytes = 32768
backup_file_size = 1999994880
The option ``backup_compression_algorithm`` can be set to ``bz2`` or ``None``.
The option ``backup_compression_algorithm`` can be set to ``bz2`` or ``none``.
The latter can be a useful setting when the server providing the share for the
backup repository itself performs deduplication or compression on the backup
data.