Commit 4933cbfa authored by Cédric Le Ninivin's avatar Cédric Le Ninivin

slapos_slap_tool: Move to use getSoftwareInstallationFromUrl method

parent 62ccbe98
......@@ -345,7 +345,7 @@ class SlapTool(BaseTool):
# Be sure to prevent accessing information to disallowed users
compute_node = _assertACI(compute_node)
try:
software_installation = compute_node._getSoftwareInstallationFromUrl(url)
software_installation = compute_node.getSoftwareInstallationFromUrl(url)
except NotFound:
data_dict = self._getAccessStatus(None)
else:
......@@ -798,7 +798,7 @@ class SlapTool(BaseTool):
Log the software release status
"""
compute_node = self.getPortalObject().portal_catalog.getComputeNodeObject(compute_node_id)
software_installation = compute_node._getSoftwareInstallationFromUrl(url)
software_installation = compute_node.getSoftwareInstallationFromUrl(url)
software_installation.setBuildingStatus(
'software release %s' % url, "building")
......@@ -808,7 +808,7 @@ class SlapTool(BaseTool):
Log the software release status
"""
compute_node = self.getPortalObject().portal_catalog.getComputeNodeObject(compute_node_id)
software_installation = compute_node._getSoftwareInstallationFromUrl(url)
software_installation = compute_node.getSoftwareInstallationFromUrl(url)
software_installation.setAccessStatus(
'software release %s available' % url, "available")
......@@ -818,7 +818,7 @@ class SlapTool(BaseTool):
Reports that Software Release is destroyed
"""
compute_node = self.getPortalObject().portal_catalog.getComputeNodeObject(compute_node_id)
software_installation = compute_node._getSoftwareInstallationFromUrl(url)
software_installation = compute_node.getSoftwareInstallationFromUrl(url)
if software_installation.getSlapState() != 'destroy_requested':
raise NotFound
if self.getPortalObject().portal_workflow.isTransitionPossible(software_installation,
......@@ -1051,7 +1051,7 @@ class SlapTool(BaseTool):
Log the compute_node status
"""
compute_node = self.getPortalObject().portal_catalog.getComputeNodeObject(compute_node_id)
software_installation = compute_node._getSoftwareInstallationFromUrl(url)
software_installation = compute_node.getSoftwareInstallationFromUrl(url)
software_installation.setErrorStatus('while installing %s' % url)
InitializeClass(SlapTool)
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment