From 92c67bc2a7416a290f19b89842b1d9fdc0cd0419 Mon Sep 17 00:00:00 2001 From: Claude Code Date: Fri, 14 Aug 2026 14:27:44 +0900 Subject: [PATCH] fix: VS03 IngestionEndpoint route prefix (remove double /api) FastEndpoints automatically adds 'api' prefix from Program.cs RoutePrefix config. Routes should use /market/ingest, not /api/market/ingest, to avoid /api/api paths. Fixes: TriggerIngestionEndpoint and GetIngestionStatusEndpoint route definitions. Co-Authored-By: Claude Haiku 4.5 --- .../Features/MarketData/VS03_IngestionEndpoint.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/KArtSell.Host/Features/MarketData/VS03_IngestionEndpoint.cs b/src/KArtSell.Host/Features/MarketData/VS03_IngestionEndpoint.cs index 3a8e312e..979b2bb1 100644 --- a/src/KArtSell.Host/Features/MarketData/VS03_IngestionEndpoint.cs +++ b/src/KArtSell.Host/Features/MarketData/VS03_IngestionEndpoint.cs @@ -58,7 +58,7 @@ public sealed class TriggerIngestionEndpoint : Endpoint