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 client automatically handles refreshing and retrying requests which fail due to expired JWT tokens. This is achieved by attaching the same object to the retry request as was attached to the original (usually a JSON object, which is fine). However for file uploads the attached data may be a stream of bytes, which may be partly consumed by the original request.
Handle this case, possibly by buffering the part of the stream that is already consumed during the first transmission so it can be retransmitted on failure.
The text was updated successfully, but these errors were encountered:
The client automatically handles refreshing and retrying requests which fail due to expired JWT tokens. This is achieved by attaching the same object to the retry request as was attached to the original (usually a JSON object, which is fine). However for file uploads the attached data may be a stream of bytes, which may be partly consumed by the original request.
Handle this case, possibly by buffering the part of the stream that is already consumed during the first transmission so it can be retransmitted on failure.
The text was updated successfully, but these errors were encountered: