Ticket #1424: test-slow-send.patch
File test-slow-send.patch, 659 bytes (added by , 4 years ago) |
---|
-
xpra/net/protocol.py
591 591 if not self._closed: 592 592 log.error("Error on write start callback %s", start_cb, exc_info=True) 593 593 while buf and not self._closed: 594 written = con.write(buf) 594 written = con.write(buf[:1024]) 595 import time 596 time.sleep(0.05) 595 597 if written: 596 598 buf = buf[written:] 597 599 self.output_raw_packetcount += 1