diff --git a/master/buildbot/steps/http.py b/master/buildbot/steps/http.py index b141d6f61f6..82cdf531d98 100644 --- a/master/buildbot/steps/http.py +++ b/master/buildbot/steps/http.py @@ -62,11 +62,11 @@ class HTTPStep(BuildStep): name = 'HTTPStep' description = 'Requesting' descriptionDone = 'Requested' - requestsParams = ["method", "url", "params", "data", "headers", + requestsParams = ["params", "data", "headers", "cookies", "files", "auth", "timeout", "allow_redirects", "proxies", "hooks", "stream", "verify", "cert"] - renderables = requestsParams + renderables = requestsParams + ["method", "url"] session = None def __init__(self, url, method, **kwargs):