Skip to content

Commit

Permalink
Fix change of behaviour on execute introduced in #363
Browse files Browse the repository at this point in the history
Essentially, the behavior changed for when a caller to the
container's execute method wished to handle the packets received back on
the websocket.  This change fixes the reversion.

Signed-off-by: Alex Kavanagh <[email protected]>
  • Loading branch information
ajkavanagh committed May 17, 2019
1 parent 765eacc commit f99f6c6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pylxd/models/container.py
Original file line number Diff line number Diff line change
Expand Up @@ -641,7 +641,7 @@ def received_message(self, message):
self.last_message_empty = True
if self.finish_off:
self.finished = True
return
return
else:
self.last_message_empty = False
if message.encoding and self.message_encoding is None:
Expand Down

0 comments on commit f99f6c6

Please sign in to comment.