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
{{ message }}
This repository has been archived by the owner on Sep 9, 2021. It is now read-only.
The SObjectsTemplate.getBlob method returns an InputStream. The inputstream is an instance of EofSensorInputStream which only allows a single use before the stream is automatically closed.
We need to validate that how we are using it is causing the stream to be closed when we are returning the object. If that is the case we need to change how we are implementing the ResponseExtractor to not cause the stream to be closed.
The text was updated successfully, but these errors were encountered:
#10 Changes to exchange from execute and then uses the ByteArrayMessageConverter to handle the response. The ByteArray is then passed to a ByteArrayInputStream to maintain the method signature.
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
The
SObjectsTemplate.getBlob
method returns anInputStream
. The inputstream is an instance ofEofSensorInputStream
which only allows a single use before the stream is automatically closed.We need to validate that how we are using it is causing the stream to be closed when we are returning the object. If that is the case we need to change how we are implementing the
ResponseExtractor
to not cause the stream to be closed.The text was updated successfully, but these errors were encountered: