mirror of
https://gitlab.com/mangadex-pub/mangadex_at_home.git
synced 2024-01-19 02:48:37 +00:00
Changed default CPU thread count to 4
Apparently, some people like to run M@H on Atoms!
This commit is contained in:
parent
28418c6315
commit
6c04d19170
|
@ -8,6 +8,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
||||||
### Added
|
### Added
|
||||||
|
|
||||||
### Changed
|
### Changed
|
||||||
|
- [2020-06-19] Changed default CPU thread count to `4` by [@lflare].
|
||||||
|
|
||||||
### Deprecated
|
### Deprecated
|
||||||
|
|
||||||
|
|
|
@ -10,7 +10,7 @@ data class ClientSettings(
|
||||||
@field:SerializedName("client_hostname") val clientHostname: String = "0.0.0.0",
|
@field:SerializedName("client_hostname") val clientHostname: String = "0.0.0.0",
|
||||||
@field:SerializedName("client_port") val clientPort: Int = 443,
|
@field:SerializedName("client_port") val clientPort: Int = 443,
|
||||||
@field:Secret @field:SerializedName("client_secret") val clientSecret: String = "PASTE-YOUR-SECRET-HERE",
|
@field:Secret @field:SerializedName("client_secret") val clientSecret: String = "PASTE-YOUR-SECRET-HERE",
|
||||||
@field:SerializedName("threads") val threads: Int = 32,
|
@field:SerializedName("threads") val threads: Int = 4,
|
||||||
@field:SerializedName("web_settings") val webSettings: WebSettings? = null
|
@field:SerializedName("web_settings") val webSettings: WebSettings? = null
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue