Re-added missing default `threads_per_cpu` setting

This commit is contained in:
Amos Ng 2020-06-12 17:17:01 +08:00
parent b264424aea
commit 69151d058f
No known key found for this signature in database
GPG Key ID: 89086414F634D123
2 changed files with 3 additions and 2 deletions

View File

@ -15,6 +15,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Removed
### Fixed
- [2020-06-12] Re-added missing default `threads_per_cpu` setting by [@lflare].
### Security
- [2020-06-12] Update ClientSettings.java changed showing client secret in logs back to hidden by [@dskilly].

View File

@ -50,14 +50,14 @@ public final class ClientSettings {
}
public int getThreadsPerCpu() {
return threadsPerCpu;
return (threadsPerCpu > 0) ? threadsPerCpu : 16;
}
@Override
public String toString() {
return "ClientSettings{" + "maxCacheSizeMib=" + maxCacheSizeMib + ", maxBandwidthMibPerHour="
+ maxBandwidthMibPerHour + ", maxBurstRateKibPerSecond=" + maxBurstRateKibPerSecond + ", clientPort="
+ clientPort + ", clientSecret='" + "<hidden>" + '\'' + ", threadsPerCpu=" + threadsPerCpu + '}';
+ clientPort + ", clientSecret='" + "<hidden>" + '\'' + ", threadsPerCpu=" + getThreadsPerCpu() + '}';
}
public static boolean isSecretValid(String clientSecret) {