Merge "Backup: Add choices to compression algorithm option"

This commit is contained in:
Jenkins 2017-03-29 20:21:18 +00:00 committed by Gerrit Code Review
commit e467c3272d

View File

@ -46,6 +46,9 @@ LOG = logging.getLogger(__name__)
chunkedbackup_service_opts = [
cfg.StrOpt('backup_compression_algorithm',
default='zlib',
choices=['none', 'off', 'no',
'zlib', 'gzip',
'bz2', 'bzip2'],
help='Compression algorithm (None to disable)'),
]