Update known-issues.md (#889)

* Add 'SSL_ERROR_SYSCALL, errno 104' as known issue
This commit is contained in:
abraunegg 2020-04-25 08:36:03 +10:00 committed by GitHub
parent 628c58ad58
commit a0f4f9ddab
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -2,7 +2,7 @@
The below are known issues with this client:
## Unable to recursively delete directories in OneDrive Business when Retention Policy is enabled
**Issue Tracker:** https://github.com/abraunegg/onedrive/issues/338
**Issue Tracker:** [#338](https://github.com/abraunegg/onedrive/issues/338)
**Description:**
@ -19,7 +19,7 @@ WORKAROUND: Manually delete all files and folders from the above path as per Bus
A future version of onedrive will attempt to resolve this automatically negating the need for the above message.
## Moving files into different folders should not cause data to delete and be re-uploaded
**Issue Tracker:** https://github.com/abraunegg/onedrive/issues/876
**Issue Tracker:** [#876](https://github.com/abraunegg/onedrive/issues/876)
**Description:**
@ -32,3 +32,38 @@ Technically, the client is 'working' correctly, as, when moving files, you are '
**Workaround:**
If the tracking of moving data to new local directories is requried, it is better to run the client in service mode (`--monitor`) rather than in standalone mode, as the 'move' of files can then be handled at the point when it occurs, so that the data is moved to the new location on OneDrive without the need to be deleted and re-uploaded.
## Application 'stops' running without any visible reason
**Issue Tracker:** [#494](https://github.com/abraunegg/onedrive/issues/494), [#753](https://github.com/abraunegg/onedrive/issues/753), [#792](https://github.com/abraunegg/onedrive/issues/792), [#884](https://github.com/abraunegg/onedrive/issues/884)
**Description:**
When running the client and performing an upload or download operation, the application just stops working without any reason or explanation.
**Explanation:**
The client is heavily dependant on Curl and OpenSSL to perform the activities with the Microsoft OneDrive service. Generally, when this issue occurs, the following is found in the HTTPS Debug Log:
```
OpenSSL SSL_read: SSL_ERROR_SYSCALL, errno 104
```
The only way to determine this is the cause of the application ceasing to work is to generate a HTTPS debug log using the following additional flags:
```
--verbose --verbose --debug-https
```
This is indicative of the following:
* Some sort of flaky Internet connection somewhere between you and the OneDrive service
* Some sort of 'broken' HTTPS transparent inspection service inspecting your traffic somewhere between you and the OneDrive service
**How to resolve:**
The best avenue of action here are:
* Ensure your OS is as up-to-date as possible
* Get support from your OS vendor
* Speak to your ISP or Help Desk for assistance
* Open a ticket with OpenSSL and/or Curl teams to better handle this sort of connection failure
* Generate a HTTPS Debug Log for this application and open a new support request with Microsoft and provide the debug log file for their analysis.
If you wish to diagnose this issue further, refer to the following:
https://maulwuff.de/research/ssl-debugging.html