-
Notifications
You must be signed in to change notification settings - Fork 2
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
Wrong remote URL for webdav backend #15
Comments
From the conversation in https://discord.com/channels/485586884165107732/485596304961962003/914048099742253068 it seems it's a compatibility issue. Summary:
|
Thanks for the reply but it seems the content's not available. Anyway, after going through apache logs I realised the actual error is because of the auth scheme. DVC is using After that, the auth problem was solved but we were facing a new issue about redirection. The actual problem was with the trailing slash. DVC was sending a URL without the trailing slash, apache / webdav was redirecting it to the URL with the trailing slash but the URL was not being followed. So we were getting 301 as a response to our post (push) request. This one was fixed by And now we are facing timeout issues on some of the cached data :)) I disabled request timeout on apache but the problem is still there. |
Hi. I'm a beginner to DVC. Yesterday, I set up DVC with a
webdav
backend as said in the official documentation. When I wanted to push to the remote, the URL had00
added to it. It must have beenhttps://mydomain/webdav/models
but instead DVC was trying to push tohttps://mydomain/webdav/models/00
which is a nonexisting URL.Any idea why this is happening and how I should solve it?
The text was updated successfully, but these errors were encountered: