Skip to content

Commit

Permalink
greenio http fix
Browse files Browse the repository at this point in the history
  • Loading branch information
lsbardel committed Jan 11, 2018
1 parent a9bfdfd commit 2a67842
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions pulsar/apps/greenio/http.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,9 @@ def __getattr__(self, name):
return getattr(self._http, name)

def get(self, url, **kwargs):
kwargs.setdefault('allow_redirects', True)
return self.request('GET', url, **kwargs)

def options(self, url, **kwargs):
kwargs.setdefault('allow_redirects', True)
return self.request('OPTIONS', url, **kwargs)

def head(self, url, **kwargs):
Expand Down

0 comments on commit 2a67842

Please sign in to comment.