restore print statement when waiting

This commit is contained in:
Shivaram Lingamneni
2021-02-22 15:25:48 -05:00
committed by Valentin Lorentz
parent efab101890
commit 2ef4689004

View File

@ -49,6 +49,8 @@ class ClientMock:
if not assert_get_one and not synchronize and data == b"": if not assert_get_one and not synchronize and data == b"":
# Received nothing # Received nothing
return [] return []
if self.show_io:
print("{:.3f} {}: waiting…".format(time.time(), self.name))
continue continue
except ConnectionResetError: except ConnectionResetError:
raise ConnectionClosed() raise ConnectionClosed()