Skip to content
This repository has been archived by the owner on Oct 12, 2023. It is now read-only.

Commit

Permalink
Switches to prefetch False for logs request.
Browse files Browse the repository at this point in the history
  • Loading branch information
Sean Brant committed Nov 26, 2012
1 parent bf31a52 commit a835820
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion heroku/models.py
Expand Up @@ -313,7 +313,7 @@ def logs(self, num=None, source=None, tail=False):
)

# Grab the actual logs.
r = requests.get(r.content, verify=False)
r = requests.get(r.content, verify=False, prefetch=False)

if not tail:
return r.content
Expand Down

0 comments on commit a835820

Please sign in to comment.