Commit 314e8192 authored by Cédric Le Ninivin's avatar Cédric Le Ninivin Committed by Titouan Soulard

slapos_cloud: make a version of _getSoftwareInstallationFromUrl public that doesn't raise NOTFound

parent b033eb9b
......@@ -316,6 +316,12 @@ class SlapOSComputeNodeMixin(object):
return partition_dict
def getSoftwareInstallationFromUrl(self, url):
try:
return self._getSoftwareInstallationFromUrl(url)
except NotFound:
return None
def _getSoftwareInstallationFromUrl(self, url):
software_installation_list = self.getPortalObject().portal_catalog.unrestrictedSearchResults(
portal_type='Software Installation',
......
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