Mark Active-Active mode as supported

Since we've got multinode job with Active/Active HA configured we can
remove 'unsupported' message from the 'cluster' config option.

Change-Id: Ida2b025eb34e6745dd5f37fbd20b74e1c96f3ca7
This commit is contained in:
Ivan Kolodyazhny 2020-07-16 12:34:39 +03:00
parent 88ced915bb
commit fbf1230db5
1 changed files with 1 additions and 2 deletions

View File

@ -74,13 +74,12 @@ backend_name_opt = cfg.StrOpt(
CONF.register_cli_opt(backend_name_opt) CONF.register_cli_opt(backend_name_opt)
# TODO(geguileo): Once we complete the work on A-A update the option's help.
cluster_opt = cfg.StrOpt('cluster', cluster_opt = cfg.StrOpt('cluster',
default=None, default=None,
help='Name of this cluster. Used to group volume ' help='Name of this cluster. Used to group volume '
'hosts that share the same backend ' 'hosts that share the same backend '
'configurations to work in HA Active-Active ' 'configurations to work in HA Active-Active '
'mode. Active-Active is not yet supported.') 'mode.')
CONF.register_opt(cluster_opt) CONF.register_opt(cluster_opt)
LOG = None LOG = None