Merge "Remove oom method since it has never been implemented"

This commit is contained in:
Zuul 2019-07-22 08:28:31 +00:00 committed by Gerrit Code Review
commit 2df8d325f8
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