Commit d094d81d authored by Benjamin Blanc's avatar Benjamin Blanc

testnode: ScalabilityTestRunner: Fix typo

parent 862ee101
...@@ -63,8 +63,8 @@ class ScalabilityTestRunner(): ...@@ -63,8 +63,8 @@ class ScalabilityTestRunner():
# Create the slapos account configuration file and dir # Create the slapos account configuration file and dir
key = self.testnode.test_suite_portal.getSlaposAccountKey() key = self.testnode.test_suite_portal.getSlaposAccountKey()
certificate = self.testnode.test_suite_portal.getSlaposAccountCertificate() certificate = self.testnode.test_suite_portal.getSlaposAccountCertificate()
key_path, cert_path, config_path = self.slapos_controler.createSlaposConfigurationFileAccount( self.key_path, self.cert_path, config_path = self.slapos_controler.createSlaposConfigurationFileAccount(
key,certificate, self.testnode.config) key, certificate, self.testnode.config)
self.slapos_communicator = None self.slapos_communicator = None
self.remaining_software_installation_dict = {} self.remaining_software_installation_dict = {}
...@@ -235,8 +235,8 @@ late a SlapOS (positive) answer." %(str(os.getpid()),str(os.getpid()),)) ...@@ -235,8 +235,8 @@ late a SlapOS (positive) answer." %(str(os.getpid()),str(os.getpid()),))
start_time = time.time() start_time = time.time()
# Create a communicator with slapos # Create a communicator with slapos
self.slapos_communicator = SlapOSMasterCommunicator.SlapOSMasterCommunicator( self.slapos_communicator = SlapOSMasterCommunicator.SlapOSMasterCommunicator(
cert_path, self.cert_path,
key_path, self.key_path,
self.log, self.log,
self.testnode.config['hateoas_slapos_master_url']) self.testnode.config['hateoas_slapos_master_url'])
# Only master testnode must order software installation # Only master testnode must order 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