Revision: bce0f637ba7f
Author: Anssi Syrjäsalo <anssi.syrjas...@eficode.com>
Date: Wed Jul 10 06:28:07 2013
Log: Lowered recv on read to the recommended setting
http://code.google.com/p/robotframework-sshlibrary/source/detail?r=bce0f637ba7f
Modified:
/src/SSHLibrary/pythonclient.py
=======================================
--- /src/SSHLibrary/pythonclient.py Wed Jul 10 06:27:03 2013
+++ /src/SSHLibrary/pythonclient.py Wed Jul 10 06:28:07 2013
@@ -90,7 +90,7 @@
def _read(self):
data = ''
while self.shell.recv_ready():
- data += self.shell.recv(100000)
+ data += self.shell.recv(4096)
return data
def _read_char(self):
--
---
You received this message because you are subscribed to the Google Groups "robotframework-commit" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to robotframework-commit+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.