Fix marketplace GPU buy/sell endpoint paths (remove duplicate /v1 prefix)
Some checks failed
API Endpoint Tests / test-api-endpoints (push) Successful in 17s
Security Scanning / security-scan (push) Has been cancelled
Python Tests / test-python (push) Has been cancelled
Integration Tests / test-service-integration (push) Has been cancelled

This commit is contained in:
aitbc
2026-04-28 18:08:39 +02:00
parent 69360aa17f
commit 2b0769d4de

View File

@@ -293,7 +293,7 @@ async def buy_gpu(
}
@router.post("/marketplace/gpu/{gpu_id}/sell")
@router.post("/v1/marketplace/gpu/{gpu_id}/sell")
async def sell_gpu(
gpu_id: str,
request: GPUSellRequest,