Remove oom method since it has never been implemented

Change-Id: I2a0f190f69625cd1e14b0fcac4f06a69b441c20f
This commit is contained in:
Ilya Shakhat 2019-07-22 09:48:25 +02:00
parent 82cb432398
commit 1fe946788a
2 changed files with 0 additions and 8 deletions

View File

@ -105,7 +105,6 @@ Available actions:
* `reboot` - reboot all nodes gracefully
* `poweroff` - power off all nodes abruptly
* `reset` - reset (cold restart) all nodes
* `oom` - fill all node's RAM
* `disconnect` - disable network with the specified name on all nodes
* `connect` - enable network with the specified name on all nodes

View File

@ -140,13 +140,6 @@ class NodeCollection(utils.ReprMixin):
task = {'command': 'reboot now'}
self.cloud_management.execute_on_cloud(self.hosts, task)
@public
def oom(self):
"""Fill all node's RAM
"""
raise NotImplementedError
@public
def poweroff(self):
"""Power off all nodes abruptly