Fix swift_test_client duplicating request params
Remove extra lines of code that result in swift_test_client adding params twice to PUT request urls. Bug was revealed while developing functional tests for SLO - SLO manifest PUTs behave incorrectly because the url constructed by swift_test_client ends with ?multipart-manifest=put?multipart-manifest=put Fixes bug 1248121 Change-Id: Ie5a8651a55049bb52ef641edfd6eb29b0ff3c245
This commit is contained in:
parent
f63b58f5b7
commit
429cb8b745
@ -267,10 +267,6 @@ class Connection(object):
|
||||
for (x, y) in parms.items()]
|
||||
path = '%s?%s' % (path, '&'.join(query_args))
|
||||
|
||||
query_args = ['%s=%s' % (urllib.quote(x),
|
||||
urllib.quote(str(y))) for (x, y) in parms.items()]
|
||||
path = '%s?%s' % (path, '&'.join(query_args))
|
||||
|
||||
self.connection = self.conn_class(self.storage_host,
|
||||
port=self.storage_port)
|
||||
#self.connection.set_debuglevel(3)
|
||||
|
Loading…
Reference in New Issue
Block a user