From d094d81d31319ce3b3271d6d99c6f0e91f3ed446 Mon Sep 17 00:00:00 2001 From: Benjamin Blanc <benjamin.blanc@tiolive.com> Date: Thu, 25 Jul 2013 10:18:21 +0200 Subject: [PATCH] testnode: ScalabilityTestRunner: Fix typo --- erp5/util/testnode/ScalabilityTestRunner.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/erp5/util/testnode/ScalabilityTestRunner.py b/erp5/util/testnode/ScalabilityTestRunner.py index 2c04da52be..b5f8e2d14d 100644 --- a/erp5/util/testnode/ScalabilityTestRunner.py +++ b/erp5/util/testnode/ScalabilityTestRunner.py @@ -63,8 +63,8 @@ class ScalabilityTestRunner(): # Create the slapos account configuration file and dir key = self.testnode.test_suite_portal.getSlaposAccountKey() certificate = self.testnode.test_suite_portal.getSlaposAccountCertificate() - key_path, cert_path, config_path = self.slapos_controler.createSlaposConfigurationFileAccount( - key,certificate, self.testnode.config) + self.key_path, self.cert_path, config_path = self.slapos_controler.createSlaposConfigurationFileAccount( + key, certificate, self.testnode.config) self.slapos_communicator = None self.remaining_software_installation_dict = {} @@ -235,8 +235,8 @@ late a SlapOS (positive) answer." %(str(os.getpid()),str(os.getpid()),)) start_time = time.time() # Create a communicator with slapos self.slapos_communicator = SlapOSMasterCommunicator.SlapOSMasterCommunicator( - cert_path, - key_path, + self.cert_path, + self.key_path, self.log, self.testnode.config['hateoas_slapos_master_url']) # Only master testnode must order software installation -- 2.30.9