You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Read up to n bytes from the object and return them. Fewer than n bytes may be
returned if the operating system call returns fewer than n bytes. If 0 bytes are
returned, this indicates end of file. If the object is in non-blocking mode and no
bytes are available, the call returns None.
The current behavior of the clients in streaming_clients is to interpret reads returning fewer than n bytes as OEF.
Solution
Update clients to properly handle short reads per PEP 3116.
The text was updated successfully, but these errors were encountered:
Problem
Per PEP 3116:
The current behavior of the clients in
streaming_clients
is to interpret reads returning fewer than n bytes as OEF.Solution
Update clients to properly handle short reads per PEP 3116.
The text was updated successfully, but these errors were encountered: