[PR #14840] [MERGED] Add schema to 503 headers #14141

Closed
opened 2026-02-07 07:25:04 +03:00 by OVERLORD · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/jellyfin/jellyfin/pull/14840
Author: @crobibero
Created: 9/23/2025
Status: Merged
Merged: 9/23/2025
Merged by: @crobibero

Base: masterHead: openapi-503


📝 Commits (1)

  • 6f17e9b Add schema to 503 headers

📊 Changes

1 file changed (+34 additions, -19 deletions)

View changed files

📝 Jellyfin.Server/Filters/RetryOnTemporarilyUnavailableFilter.cs (+34 -19)

📄 Description

Fixes https://github.com/jellyfin/jellyfin/issues/14839

{
  [...]
  "503": {
	"description": "The server is currently starting or is temporarily not available.",
	"headers": {
	  "Retry-After": {
	    "description": "A hint for when to retry the operation in full seconds.",
	    "allowEmptyValue": true,
	    "schema": {
	      "type": "integer",
	      "format": "int32"
	    }
	  },
	  "Message": {
	    "description": "A short plain-text reason why the server is not available.",
	    "allowEmptyValue": true,
	    "schema": {
	      "type": "string",
	      "format": "text"
	    }
	  }
	},
	"content": {
	  "text/html": { }
	}
  },
  [...]
}

🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/jellyfin/jellyfin/pull/14840 **Author:** [@crobibero](https://github.com/crobibero) **Created:** 9/23/2025 **Status:** ✅ Merged **Merged:** 9/23/2025 **Merged by:** [@crobibero](https://github.com/crobibero) **Base:** `master` ← **Head:** `openapi-503` --- ### 📝 Commits (1) - [`6f17e9b`](https://github.com/jellyfin/jellyfin/commit/6f17e9be787f5d3d485395226574a9ea81896bbc) Add schema to 503 headers ### 📊 Changes **1 file changed** (+34 additions, -19 deletions) <details> <summary>View changed files</summary> 📝 `Jellyfin.Server/Filters/RetryOnTemporarilyUnavailableFilter.cs` (+34 -19) </details> ### 📄 Description Fixes https://github.com/jellyfin/jellyfin/issues/14839 ```json { [...] "503": { "description": "The server is currently starting or is temporarily not available.", "headers": { "Retry-After": { "description": "A hint for when to retry the operation in full seconds.", "allowEmptyValue": true, "schema": { "type": "integer", "format": "int32" } }, "Message": { "description": "A short plain-text reason why the server is not available.", "allowEmptyValue": true, "schema": { "type": "string", "format": "text" } } }, "content": { "text/html": { } } }, [...] } ``` --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
OVERLORD added the pull-request label 2026-02-07 07:25:04 +03:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/jellyfin#14141