Skip to content

Commit

Permalink
added http proxy handler
Browse files Browse the repository at this point in the history
  • Loading branch information
vasischev committed Jun 2, 2015
1 parent a3b0a2f commit 803cb7f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bzt/modules/blazemeter.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ def prepare(self):
proxy_uri = "%s://%s:%s@%s" % (proxy_url.scheme, username, pwd, proxy_url.netloc)
else:
proxy_uri = "%s://%s" % (proxy_url.scheme, proxy_url.netloc)
proxy_handler = ProxyHandler({"https":proxy_uri})
proxy_handler = ProxyHandler({"https":proxy_uri, "http":proxy_uri})
opener = build_opener(proxy_handler)
install_opener(opener)

Expand Down

0 comments on commit 803cb7f

Please sign in to comment.