Skip to content

Commit

Permalink
fix #25
Browse files Browse the repository at this point in the history
  • Loading branch information
saklar13 committed Jun 22, 2020
1 parent 0390e0b commit 047e111
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion cloudshell/layer_one/core/connection_handler.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,9 @@ def _read_socket(self):
if not input_buffer:
raise ConnectionClosedException()
else:
data += input_buffer.strip()
# removed input_buffer.strip(), fixes
# https://github.com/QualiSystems/cloudshell-L1-networking-core/issues/25
data += input_buffer
if re.search(self.REQUEST_END, data):
break

Expand Down
2 changes: 1 addition & 1 deletion version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.0.12
1.0.13

0 comments on commit 047e111

Please sign in to comment.