Skip to content

Commit 674c004

Browse files
Fix help for ironic.peer_list config
This implied that the current host did not need to be in this list; however, it does. Closes-Bug: #1827094 Change-Id: I4fe9df6b3789ae0365900d546d49121b99ea2a44
1 parent ce5ef76 commit 674c004

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

nova/conf/ironic.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -96,11 +96,11 @@
9696
'peer_list',
9797
default=[],
9898
mutable=True,
99-
help='List of hostnames for other nova-compute services with the same '
100-
'partition_key config value. Nodes matching the partition_key '
101-
'value will be distributed between this service and the other '
102-
'services specified here. If partition_key is unset, this option '
103-
'is ignored.'),
99+
help='List of hostnames for all nova-compute services (including '
100+
'this host) with this partition_key config value. '
101+
'Nodes matching the partition_key value will be distributed '
102+
'between all services specified here. '
103+
'If partition_key is unset, this option is ignored.'),
104104
]
105105

106106
deprecated_opts = {

0 commit comments

Comments
 (0)