swift: Fix ignored *_domain_name options
The *_domain_name options are always ignored because the *_domain_id options have the default values. This moves the default definition from id options to name options so that setting the *_domain_name options work. Change-Id: I124a81c8eca2392916bb3ec638bb9ae61d5226a2
This commit is contained in:
parent
51350eabbe
commit
355e1d8fcc
@ -30,22 +30,25 @@ insecure = cfg.StrOpt(
|
||||
|
||||
|
||||
project_domain_id = cfg.StrOpt(
|
||||
"project_domain_id", default="default",
|
||||
"project_domain_id",
|
||||
help="Domain ID containing project")
|
||||
|
||||
|
||||
project_domain_name = cfg.StrOpt(
|
||||
"project_domain_name",
|
||||
default='Default',
|
||||
help="Domain name containing project")
|
||||
|
||||
|
||||
user_domain_id = cfg.StrOpt(
|
||||
"user_domain_id", default="default",
|
||||
"user_domain_id",
|
||||
help="User's domain id")
|
||||
|
||||
|
||||
user_domain_name = cfg.StrOpt(
|
||||
"user_domain_name", help="User's domain name")
|
||||
"user_domain_name",
|
||||
default='Default',
|
||||
help="User's domain name")
|
||||
|
||||
|
||||
region_name = cfg.StrOpt(
|
||||
|
Loading…
x
Reference in New Issue
Block a user