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
When calling the ReportDownloadsApi::downloadReportWithHttpInfo() the returned InputStream from getData() has been closed and cannot be read. The client examples suggest the stream should be readable.
I believe the stream is being closed deliberately by response.body().close()L1211 that was added to v0.0.36 to fix issue #21. The ApiClient::deserialise() function returns the response stream as-is but it is then closed as the response.body(). The closing of the body stream likely wants to be only for non-stream response types that have already been deserialised.
The text was updated successfully, but these errors were encountered:
When calling the ReportDownloadsApi::downloadReportWithHttpInfo() the returned InputStream from getData() has been closed and cannot be read. The client examples suggest the stream should be readable.
I believe the stream is being closed deliberately by
response.body().close()
L1211 that was added to v0.0.36 to fix issue #21. The ApiClient::deserialise() function returns the response stream as-is but it is then closed as the response.body(). The closing of the body stream likely wants to be only for non-stream response types that have already been deserialised.The text was updated successfully, but these errors were encountered: