Commit 5da9f5dd authored by Benjamin Blanc's avatar Benjamin Blanc

testnode: ScalabilityTestRunner: Fix bug after instance creation

parent a3c074d7
...@@ -314,18 +314,17 @@ late a SlapOS (positive) answer." %(str(os.getpid()),str(os.getpid()),)) ...@@ -314,18 +314,17 @@ late a SlapOS (positive) answer." %(str(os.getpid()),str(os.getpid()),))
""" """
# Launch instance # Launch instance
self.instance_title = self._generateInstancetitle(node_test_suite.test_suite_title) self.instance_title = self._generateInstancetitle(node_test_suite.test_suite_title)
self._createInstance(self.reachable_profile, configuration_list[0], try:
self.instance_title, node_test_suite.test_result, node_test_suite.test_suite) self._createInstance(self.reachable_profile, configuration_list[0],
self.log("Scalability instance requested") self.instance_title, node_test_suite.test_result, node_test_suite.test_suite)
self.log("Waiting for instance creation..") self.log("Scalability instance requested.")
self._waitInstanceCreation(self.instance_title) except:
""" except:
self.log("Unable to launch instance") self.log("Unable to launch instance")
raise ValueError("Unable to launch instance") raise ValueError("Unable to launch instance")
return {'status_code' : 1} # Unbale to launch instance self.log("Waiting for instance creation..")
""" self._waitInstanceCreation(self.instance_title)
return {'status_code' : 1} # Unable to continue due to not realizable configuration return {'status_code' : 0}
return {'status_code' : 0} return {'status_code' : 1}
def runTestSuite(self, node_test_suite, portal_url): def runTestSuite(self, node_test_suite, portal_url):
if not self.launchable: if not self.launchable:
......
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