Merge "Fix node-inject-nmi to pass an empty body"
This commit is contained in:
@@ -1221,7 +1221,7 @@ class NodeManagerTest(testtools.TestCase):
|
||||
self.mgr.inject_nmi(NODE1['uuid'])
|
||||
expect = [
|
||||
('PUT', '/v1/nodes/%s/management/inject_nmi' % NODE1['uuid'],
|
||||
{}, None),
|
||||
{}, {}),
|
||||
]
|
||||
self.assertEqual(expect, self.api.calls)
|
||||
|
||||
|
@@ -425,7 +425,7 @@ class NodeManager(base.CreateManager):
|
||||
|
||||
def inject_nmi(self, node_uuid):
|
||||
path = "%s/management/inject_nmi" % node_uuid
|
||||
return self.update(path, None, http_method='PUT')
|
||||
return self.update(path, {}, http_method='PUT')
|
||||
|
||||
def get_supported_boot_devices(self, node_uuid):
|
||||
path = "%s/management/boot_device/supported" % node_uuid
|
||||
|
Reference in New Issue
Block a user