fix(card-master): 500 not 503 when blob missing; explicit test-project copy link

This commit is contained in:
gamer147
2026-06-12 12:19:37 -04:00
parent d74bae9ba0
commit 6eb4547866
2 changed files with 7 additions and 1 deletions

View File

@@ -29,7 +29,8 @@ public class ImmutableDataController : SVSimController
{
if (!_provider.IsAvailable)
{
return StatusCode(503, "card-master payload not available");
// 500 not 503: blob missing is operator error (config / build), not transient — no retry will help.
return StatusCode(500, "card-master payload not available");
}
return Ok(new CardMasterResponse { CardMaster = _provider.Base64Blob });
}