Skip to content
Snippets Groups Projects
Commit 922c57bf authored by Guido Trotter's avatar Guido Trotter
Browse files

InstanceStartup: use overridden beparams in prereq


Without doing this memory checks happen on instance default parameters
rather than any overridden ones.

Signed-off-by: default avatarGuido Trotter <ultrotter@google.com>
Reviewed-by: default avatarMichael Hanselmann <hansmi@google.com>
parent da775218
No related branches found
No related tags found
No related merge requests found
......@@ -6532,6 +6532,7 @@ class LUInstanceStartup(LogicalUnit):
_CheckNodeOnline(self, instance.primary_node)
 
bep = self.cfg.GetClusterInfo().FillBE(instance)
bep.update(self.op.beparams)
 
# check bridges existence
_CheckInstanceBridgesExist(self, instance)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment