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
I had frequently get_current errors in my log file, although after some failures it succeed to download the current record.
I now found out that the problems seems to be the line
while len(tmp) < record_size and cnt < max_cnt:
in _read_record.
I corrected it to
while len(tmp) <= record_size and cnt < max_cnt:
which resolved the problem.
The text was updated successfully, but these errors were encountered:
I had frequently get_current errors in my log file, although after some failures it succeed to download the current record.
I now found out that the problems seems to be the line
while len(tmp) < record_size and cnt < max_cnt:
in _read_record.
I corrected it to
while len(tmp) <= record_size and cnt < max_cnt:
which resolved the problem.
The text was updated successfully, but these errors were encountered: