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
The following code snippet sends a particular RMA query, for which the number of results returned by the server is always consistently smaller than the total number of results reported in the status part of the reponse:
Downloading the metadata for all results...
Traceback (most recent call last):
File "/Users/sschmidt/Code/BlueBrain/atldld/x.py", line 17, in <module>
msg = rma_all(rma_parameters)
File "/Users/sschmidt/Code/BlueBrain/atldld/src/atldld/requests.py", line 187, in rma_all
raise RuntimeError("No data received")
RuntimeError: No data received
Given that the behaviour of not returning all results reported is reproducible we should probably not raise but only print a warning and still return the results received.
The text was updated successfully, but these errors were encountered:
The following code snippet sends a particular RMA query, for which the number of results returned by the server is always consistently smaller than the total number of results reported in the status part of the reponse:
50476
50274
This leads to
rma_all
raising aRuntimeError
:Given that the behaviour of not returning all results reported is reproducible we should probably not raise but only print a warning and still return the results received.
The text was updated successfully, but these errors were encountered: