Skip to content

Commit

Permalink
Turns off disable_buffering argument.
Browse files Browse the repository at this point in the history
I'm not sure why I need this to be off, probably has to do with some
dependencies interactions between dockerblade and this module. Clearly
that's a me problem, but I'm saving this so I can have a record of what I'm
doing.

Signed-off-by: Tyler Westland <tylerofthewest@gmail.com>
  • Loading branch information
I-question-this committed Apr 21, 2023
1 parent 69742c4 commit e44521f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docker/transport/unixconn.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,8 @@ def putheader(self, header, *values):
self.disable_buffering = True

def response_class(self, sock, *args, **kwargs):
if self.disable_buffering:
kwargs['disable_buffering'] = True
# if self.disable_buffering:
# kwargs['disable_buffering'] = True

return httplib.HTTPResponse(sock, *args, **kwargs)

Expand Down

0 comments on commit e44521f

Please sign in to comment.