Gianluca Coviello
Gianluca Coviello
The JVM proxy seems to be ignored when sending calls to onedrive api through LargeFileUploadTask. I start the JVM with the typical proxy settings, i.e. with -Dhttp.proxyHost=..., and -Dhttps.proxyHost and...
`LargeFileUploadTask`'s constructor does not check anymore whether the `available()` method of `InputStream` returns a positive number; as stated by the javadoc this method just makes an estimate of the available...
When creating a `LargeFileTaskUpload`, the constructor checks whether the stream has available bytes or not https://github.com/microsoftgraph/msgraph-sdk-java-core/blob/3d9a4611de682c0f5a890ade08f0c55f89e9092c/src/main/java/com/microsoft/graph/core/tasks/LargeFileUploadTask.java#L91, but, the [javadoc of InputStream.available()](https://download.java.net/java/early_access/valhalla/docs/api/java.base/java/io/InputStream.html#available()) clearly states that: > Returns an **estimate** of the...