We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Question
Setup details Please provide following details, if applicable to your situation:
The text was updated successfully, but these errors were encountered:
In tus android library , how we can terminate or abort a on going upload from client side ?
tus-java-client currently has no method to terminate or delete an upload. You would have to send the HTTP DELETE request on your own.
DELETE
2. While a upload is in process, when I try to send a delete request, i get response 423 file currently locked. How to resolve
You first have to stop the upload and wait for the PATCH request to be over. Have a look at the example application: https://github.com/tus/tus-android-client/blob/master/example/src/main/java/io/tus/android/example/MainActivity.java The logic behind the pause button shows how to interrupt and stop the tus upload. After waiting for a short delay, you can send your DELETE request.
Sorry, something went wrong.
No branches or pull requests
Question
Setup details
Please provide following details, if applicable to your situation:
The text was updated successfully, but these errors were encountered: