Merge "Include HeartbeatMixin in the ramdisk deploy" into stable/victoria

This commit is contained in:
Zuul 2021-01-05 11:32:25 +00:00 committed by Gerrit Code Review
commit b4cb934e59
2 changed files with 7 additions and 1 deletions

View File

@ -37,7 +37,8 @@ class PXEBoot(pxe_base.PXEBaseMixin, base.BootInterface):
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):
return {}

View File

@ -0,0 +1,5 @@
---
fixes:
- |
Fixes cleaning with the ``ramdisk`` deploy interface by reusing the same
procedure as for the ``direct`` deploy interface.