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
A chunked blob upload is accomplished in three phases:
1. Obtain a session ID (upload URL) (POST)
* Content-Length: 0
2. Upload the chunks (PATCH)
3. Close the session (PUT)
And
To get the current status after a 416 error, issue a GET request to a URL <location>
MUST have the following headers:
Location: <location>
Range: 0-<end-of-range>
What's the expected response for the "GET" request if it is called immediately after "1. Obtain a session ID (upload URL) (POST)"? Now the content is empty, size is 0, but we can't respond "0--1" here.
Should we define this behavior as 400 or some other error codes? Or leave it as the undefined behavior (responding anything is fine)?