mirror of
https://github.com/stashapp/stash.git
synced 2025-12-27 18:56:06 +01:00
Handle /healthz for liveness checks. (#1264)
This commit is contained in:
parent
2edcdeaeb9
commit
4462b3cc8e
2 changed files with 2 additions and 0 deletions
|
|
@ -124,6 +124,7 @@ func Start() {
|
|||
|
||||
r := chi.NewRouter()
|
||||
|
||||
r.Use(middleware.Heartbeat("/healthz"))
|
||||
r.Use(authenticateHandler())
|
||||
r.Use(middleware.Recoverer)
|
||||
|
||||
|
|
|
|||
|
|
@ -3,6 +3,7 @@
|
|||
* Added scene queue.
|
||||
|
||||
### 🎨 Improvements
|
||||
* Add HTTP endpoint for health checking at /healthz.
|
||||
* Support `today` and `yesterday` for `parseDate` in scrapers.
|
||||
* Add random sorting option for galleries, studios, movies and tags.
|
||||
* Disable sounds on scene/marker wall previews by default.
|
||||
|
|
|
|||
Loading…
Reference in a new issue