2
0
mirror of https://github.com/xcat2/confluent.git synced 2024-11-22 17:43:14 +00:00

Merge pull request #19 from jufm/mci_fix

Fix MCI command
This commit is contained in:
Jarrod Johnson 2015-09-09 15:15:03 -04:00
commit e207940e50

View File

@ -572,7 +572,10 @@ class InputMCI(ConfluentInputMessage):
raise exc.InvalidArgumentException(
'This only supports per-node input')
for node in nodes:
self.mci[node] = inputdata
self.inputbynode[node] = inputdata
def mci(self, node):
return self.inputbynode[node]['identifier']
class BootDevice(ConfluentChoiceMessage):