Include HeartbeatMixin in the ramdisk deploy
Otherwise cleaning gets stuck forever because there is no heartbeat implementation to use. Change-Id: I3589038001b98c866f47339ac8d65edfb891ed79
This commit is contained in:
parent
a58b88c737
commit
ca37578a0a
@ -37,7 +37,8 @@ class PXEBoot(pxe_base.PXEBaseMixin, base.BootInterface):
|
|||||||
capabilities = ['ramdisk_boot', 'pxe_boot']
|
capabilities = ['ramdisk_boot', 'pxe_boot']
|
||||||
|
|
||||||
|
|
||||||
class PXERamdiskDeploy(agent_base.AgentBaseMixin, base.DeployInterface):
|
class PXERamdiskDeploy(agent_base.AgentBaseMixin, agent_base.HeartbeatMixin,
|
||||||
|
base.DeployInterface):
|
||||||
|
|
||||||
def get_properties(self, task):
|
def get_properties(self, task):
|
||||||
return {}
|
return {}
|
||||||
|
5
releasenotes/notes/ramdisk-clean-2d3b033a401b911b.yaml
Normal file
5
releasenotes/notes/ramdisk-clean-2d3b033a401b911b.yaml
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
---
|
||||||
|
fixes:
|
||||||
|
- |
|
||||||
|
Fixes cleaning with the ``ramdisk`` deploy interface by reusing the same
|
||||||
|
procedure as for the ``direct`` deploy interface.
|
Loading…
Reference in New Issue
Block a user