Merge "Remove [ and ] around parameter values in http url"

This commit is contained in:
Zuul 2020-07-24 03:40:56 +00:00 committed by Gerrit Code Review
commit febb0e49b5
1 changed files with 1 additions and 1 deletions

View File

@ -140,7 +140,7 @@ class HttpPublisher(publisher.ConfigPublisherBase):
scheme,
netloc,
parsed_url.path,
urlparse.urlencode(params),
urlparse.urlencode(params, doseq=True),
parsed_url.fragment])
self.session.mount(self.target, adapters.HTTPAdapter(**kwargs))