Merge "Trivial: log which state the node is in"
This commit is contained in:
commit
0c4401cfbb
@ -2339,13 +2339,15 @@ class ConductorManager(base_manager.BaseConductorManager):
|
|||||||
action = _("Port %(port)s can not have any connectivity "
|
action = _("Port %(port)s can not have any connectivity "
|
||||||
"attributes (%(connect)s) updated unless "
|
"attributes (%(connect)s) updated unless "
|
||||||
"node %(node)s is in a %(allowed)s state "
|
"node %(node)s is in a %(allowed)s state "
|
||||||
"or in maintenance mode.")
|
"or in maintenance mode. The current state is "
|
||||||
|
"%(state)s.")
|
||||||
|
|
||||||
raise exception.InvalidState(
|
raise exception.InvalidState(
|
||||||
action % {'port': port_uuid,
|
action % {'port': port_uuid,
|
||||||
'node': node.uuid,
|
'node': node.uuid,
|
||||||
'connect': ', '.join(connectivity_attr),
|
'connect': ', '.join(connectivity_attr),
|
||||||
'allowed': ', '.join(allowed_update_states)})
|
'allowed': ', '.join(allowed_update_states),
|
||||||
|
'state': node.provision_state})
|
||||||
|
|
||||||
utils.validate_port_physnet(task, port_obj)
|
utils.validate_port_physnet(task, port_obj)
|
||||||
task.driver.network.validate(task)
|
task.driver.network.validate(task)
|
||||||
|
Loading…
Reference in New Issue
Block a user