-
-
Notifications
You must be signed in to change notification settings - Fork 7
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
Uncaught exception while creating folder hierarchy #21
Comments
There is no workaround AFAIK. Can you submit a PR to add an exception handler? If not, do you have a consistent reproduction protocol? |
I started diving into the code of this library and found out that the issue comes from the It is missing a simple sanity test within the In my opinion, this can only be solved in their side. |
I think the library is unmaintained. Every time this happened to me, I submitted pull requests, and the author was kind enough to get my PRs merged. |
There's another reason for us to either fork or ditch and replace WebDAV-Client: it still uses request which has been deprecated a while ago and isn't maintained anymore. |
Not sure about how the landscape has changed, but back when I started to write that library, there was no working alternative to Webdav-client and I didn't feel like rewriting one. That said, a move might be a good way of finally getting rid of the speed problems we currently face. |
@floriansimon1 We've been evaluating alternative libraries or simply rewriting the necessary HTTP/WebDAV requests ourselves as we became aware of the deprecation of This is slightly off-topic though, so I don't want to go into too much detail, but yeah, submitting a PR to WebDAV-Client would probably be the quickest way to solve this issue. |
Hi tentwentyfour team,
I am developing a server which needs to create a folder hierarchy in nextcloud on user demand.
I stumbled into the case where losing the connection to the nextcloud server while executing
createFolderHierarchy
results in the following uncaught exception:Since this function does not throw any exception, I end up with my server being killed.
Is there a workaround for this?
The text was updated successfully, but these errors were encountered: