Commit dbf75f4d authored by Benjamin Blanc's avatar Benjamin Blanc

scalability/runScalabilityTestSuite: Fix missing variable initialization

parent 227a1be5
...@@ -14,6 +14,7 @@ import logging.handlers ...@@ -14,6 +14,7 @@ import logging.handlers
import glob import glob
import urlparse import urlparse
import httplib import httplib
import base64
from erp5.util.benchmark.argument import ArgumentType from erp5.util.benchmark.argument import ArgumentType
from erp5.util.benchmark.performance_tester import PerformanceTester from erp5.util.benchmark.performance_tester import PerformanceTester
from erp5.util import taskdistribution from erp5.util import taskdistribution
...@@ -39,6 +40,12 @@ def getConnection(erp5_url, log): ...@@ -39,6 +40,12 @@ def getConnection(erp5_url, log):
MAX_INSTALLATION_TIME = 1200 MAX_INSTALLATION_TIME = 1200
def waitFor0PendingActivities(erp5_url, log): def waitFor0PendingActivities(erp5_url, log):
start_time = time.time() start_time = time.time()
parsed = urlparse.urlparse(erp5_url)
user = parsed.username;
password = parsed.password;
header_dict = {'Authorization': 'Basic %s' % \
base64.encodestring('%s:%s' % (user, password)).strip()}
while MAX_INSTALLATION_TIME > time.time()-start_time: while MAX_INSTALLATION_TIME > time.time()-start_time:
zope_connection = getConnection(erp5_url, log) zope_connection = getConnection(erp5_url, log)
zope_connection.request( zope_connection.request(
......
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