mirror of
https://gitlab.com/mangadex-pub/mangadex_at_home.git
synced 2024-01-19 02:48:37 +00:00
Some final tuning
This commit is contained in:
parent
eac0042f37
commit
351e3601a4
|
@ -17,6 +17,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
||||||
|
|
||||||
### Security
|
### Security
|
||||||
|
|
||||||
|
## [2.0.0-rc5] - 2021-01-27
|
||||||
|
### Changed
|
||||||
|
- [2021-01-27] Minor code tweaks [@carbotaniuman].
|
||||||
|
|
||||||
## [2.0.0-rc4] - 2021-01-27
|
## [2.0.0-rc4] - 2021-01-27
|
||||||
### Changed
|
### Changed
|
||||||
- [2021-01-27] Added `threads` back with new semantics [@carbotaniuman].
|
- [2021-01-27] Added `threads` back with new semantics [@carbotaniuman].
|
||||||
|
@ -308,7 +312,8 @@ This release contains many breaking changes! Of note are the changes to the cach
|
||||||
### Fixed
|
### Fixed
|
||||||
- [2020-06-11] Tweaked logging configuration to reduce log file sizes by [@carbotaniuman].
|
- [2020-06-11] Tweaked logging configuration to reduce log file sizes by [@carbotaniuman].
|
||||||
|
|
||||||
[Unreleased]: https://gitlab.com/mangadex/mangadex_at_home/-/compare/2.0.0-rc4...HEAD
|
[Unreleased]: https://gitlab.com/mangadex/mangadex_at_home/-/compare/2.0.0-rc5...HEAD
|
||||||
|
[2.0.0-rc5]: https://gitlab.com/mangadex/mangadex_at_home/-/compare/2.0.0-rc4...2.0.0-rc5
|
||||||
[2.0.0-rc4]: https://gitlab.com/mangadex/mangadex_at_home/-/compare/2.0.0-rc3...2.0.0-rc4
|
[2.0.0-rc4]: https://gitlab.com/mangadex/mangadex_at_home/-/compare/2.0.0-rc3...2.0.0-rc4
|
||||||
[2.0.0-rc3]: https://gitlab.com/mangadex/mangadex_at_home/-/compare/2.0.0-rc2...2.0.0-rc3
|
[2.0.0-rc3]: https://gitlab.com/mangadex/mangadex_at_home/-/compare/2.0.0-rc2...2.0.0-rc3
|
||||||
[2.0.0-rc2]: https://gitlab.com/mangadex/mangadex_at_home/-/compare/2.0.0-rc1...2.0.0-rc2
|
[2.0.0-rc2]: https://gitlab.com/mangadex/mangadex_at_home/-/compare/2.0.0-rc1...2.0.0-rc2
|
||||||
|
|
|
@ -23,4 +23,4 @@ import com.fasterxml.jackson.databind.annotation.JsonNaming
|
||||||
import java.time.OffsetDateTime
|
import java.time.OffsetDateTime
|
||||||
|
|
||||||
@JsonNaming(PropertyNamingStrategies.SnakeCaseStrategy::class)
|
@JsonNaming(PropertyNamingStrategies.SnakeCaseStrategy::class)
|
||||||
data class Token(val expires: OffsetDateTime, val ip: String, val hash: String, val clientId: String)
|
data class Token(val expires: OffsetDateTime, val hash: String, val clientId: String? = null, val ip: String? = null)
|
||||||
|
|
|
@ -258,7 +258,6 @@ fun getServer(
|
||||||
|
|
||||||
val client =
|
val client =
|
||||||
ClientFilters.SetBaseUriFrom(remoteSettings.imageServer)
|
ClientFilters.SetBaseUriFrom(remoteSettings.imageServer)
|
||||||
.then(ClientFilters.MicrometerMetrics.RequestCounter(registry))
|
|
||||||
.then(ClientFilters.MicrometerMetrics.RequestTimer(registry))
|
.then(ClientFilters.MicrometerMetrics.RequestTimer(registry))
|
||||||
.then(apache)
|
.then(apache)
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue