Skip to content

Commit

Permalink
remove method and url from the requestsParams
Browse files Browse the repository at this point in the history
  • Loading branch information
Mikhail Sobolev committed Jan 23, 2015
1 parent adc885c commit 5ca8bf8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions master/buildbot/steps/http.py
Expand Up @@ -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):
Expand Down

0 comments on commit 5ca8bf8

Please sign in to comment.