-
Notifications
You must be signed in to change notification settings - Fork 479
New issue
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
TemporaryError "Lockfile created, but doesn't exist" #201
Comments
tusd creates a lock file for each upload to ensure that only one client accesses the upload at a time. Apparently the creation of this lockfile can fail causing the error you are seeing. |
I'm using macOS. But project setup is executed on VM with Vagrant. On VM i'm using Ubuntu 16.04.5 LTS. |
Ok, that makes sense. I assume that you use VirtualBox since that is the default provider for Vagrant. Due to security reasons (according to https://stackoverflow.com/a/24365338), VirtualBox has disabled symbolic links in shared folders. However, these lock files use symbolic links internally, which explains why this error occurs. The linked question on StackOverflow contains a way to allow symbolic links, so you might try it out. If that does not work, you should try running tusd not inside a shared folder. |
I forgot to write about log i get: |
Where is this log from? I am not really sure where it belongs. But since the log mentions it, what's the output of Also, did you try the suggestions I gave you in the comment above? |
when i run Output of
Yes, i tried to put that to my Vagrantfile:
But i get the same |
Ok, thanks. Did you try following yet?
|
@Acconut Yes, that worked. Thank you! |
Why does it raise and how to avoid this error?
The text was updated successfully, but these errors were encountered: