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
There has been a problem with finishing large files. Sometimes the response from b2_finish_large_file is lost, which can happen because of a request timeout or broken connection. When that happens, the client can't tell whether the file was finished or not. Trying to finish the file again will return a `400 Bad Request' because the file is already finished.
Recently, a race condition has been fixed in the B2 service. Now, if there is a request to finish a file in progress, another call to b2_finish_large_file guarantees not to return a 400 until that request completes. Now, after you get a 400 back when trying to finish a file, you can call b2_get_file_info and get an accurate answer as to whether the file was finished.
Now, the SDK needs to be extended to check whether finishing a file succeeded if a 400 is returned from b2_finish_large_file.
The text was updated successfully, but these errors were encountered:
* Adding support for a serializedName attribute.
The serializedName attribute defines the member name to use when serializing to JSON. This allows for vaid JSON member names that cannot be represented as Java field names.
There has been a problem with finishing large files. Sometimes the response from
b2_finish_large_file
is lost, which can happen because of a request timeout or broken connection. When that happens, the client can't tell whether the file was finished or not. Trying to finish the file again will return a `400 Bad Request' because the file is already finished.Recently, a race condition has been fixed in the B2 service. Now, if there is a request to finish a file in progress, another call to
b2_finish_large_file
guarantees not to return a 400 until that request completes. Now, after you get a 400 back when trying to finish a file, you can callb2_get_file_info
and get an accurate answer as to whether the file was finished.Now, the SDK needs to be extended to check whether finishing a file succeeded if a 400 is returned from
b2_finish_large_file
.The text was updated successfully, but these errors were encountered: