summaryrefslogtreecommitdiff
path: root/trove/common/cfg.py
diff options
context:
space:
mode:
Diffstat (limited to 'trove/common/cfg.py')
-rw-r--r--trove/common/cfg.py18
1 files changed, 9 insertions, 9 deletions
diff --git a/trove/common/cfg.py b/trove/common/cfg.py
index aaaf189f..3a627cbe 100644
--- a/trove/common/cfg.py
+++ b/trove/common/cfg.py
@@ -1430,7 +1430,13 @@ mariadb_opts = [
help='List of UDP ports and/or port ranges to open '
'in the security group (only applicable '
'if trove_security_groups_support is True).'),
- cfg.StrOpt('backup_strategy', default='MariaDBInnoBackupEx',
+ cfg.StrOpt('backup_namespace',
+ default='trove.guestagent.strategies.backup.experimental'
+ '.mariadb_impl',
+ help='Namespace to load backup strategies from.',
+ deprecated_name='backup_namespace',
+ deprecated_group='DEFAULT'),
+ cfg.StrOpt('backup_strategy', default='MariaBackup',
help='Default strategy to perform backups.',
deprecated_name='backup_strategy',
deprecated_group='DEFAULT'),
@@ -1451,12 +1457,6 @@ mariadb_opts = [
cfg.IntOpt('usage_timeout', default=400,
help='Maximum time (in seconds) to wait for a Guest to become '
'active.'),
- cfg.StrOpt('backup_namespace',
- default='trove.guestagent.strategies.backup.experimental'
- '.mariadb_impl',
- help='Namespace to load backup strategies from.',
- deprecated_name='backup_namespace',
- deprecated_group='DEFAULT'),
cfg.StrOpt('restore_namespace',
default='trove.guestagent.strategies.restore.experimental'
'.mariadb_impl',
@@ -1468,8 +1468,8 @@ mariadb_opts = [
cfg.StrOpt('device_path', default='/dev/vdb',
help='Device path for volume if volume support is enabled.'),
cfg.DictOpt('backup_incremental_strategy',
- default={'MariaDBInnoBackupEx':
- 'MariaDBInnoBackupExIncremental'},
+ default={'MariaBackup':
+ 'MariaBackupIncremental'},
help='Incremental Backup Runner based on the default '
'strategy. For strategies that do not implement an '
'incremental backup, the runner will use the default full '