Add changelog entry, wrap long line.

This commit is contained in:
Michael Bayne
2019-01-04 10:52:42 -08:00
parent a7da7d374b
commit dc768515d5
2 changed files with 5 additions and 1 deletions
+3
View File
@@ -15,6 +15,9 @@
* Number of concurrent downloads now defaults to num-cores minus one. Though downloads are I/O * Number of concurrent downloads now defaults to num-cores minus one. Though downloads are I/O
bound rather than CPU bound, this still turns out to be a decent default. bound rather than CPU bound, this still turns out to be a decent default.
* Avoid checking for proxy config if `https.proxyHost` is set. This matches existing behavior when
`http.proxyHost` is set.
## 1.8.2 - Nov 27, 2018 ## 1.8.2 - Nov 27, 2018
* Fixed a data corruption bug introduced at last minute into 1.8.1 release. Oops. * Fixed a data corruption bug introduced at last minute into 1.8.1 release. Oops.
@@ -223,7 +223,8 @@ public abstract class Getdown extends Thread
protected boolean detectProxy () protected boolean detectProxy ()
{ {
// we may already have a proxy configured // we may already have a proxy configured
if (System.getProperty("http.proxyHost") != null || System.getProperty("https.proxyHost") != null) { if (System.getProperty("http.proxyHost") != null ||
System.getProperty("https.proxyHost") != null) {
return true; return true;
} }