From c84516e5d52de7eb36e38afdc92f92e8c4878fae Mon Sep 17 00:00:00 2001 From: Jalil Arfaoui Date: Sun, 8 Mar 2026 00:05:59 +0100 Subject: [PATCH] Forcer un rebuild sans cache via useCache=false sur l'API Clever Cloud --- src/pages/api/rebuild.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pages/api/rebuild.ts b/src/pages/api/rebuild.ts index 57c7891..f59c56c 100644 --- a/src/pages/api/rebuild.ts +++ b/src/pages/api/rebuild.ts @@ -20,7 +20,7 @@ export const POST: APIRoute = async ({ request }) => { } const response = await fetch( - `https://api-bridge.clever-cloud.com/v2/organisations/${orgaId}/applications/${appId}/instances`, + `https://api-bridge.clever-cloud.com/v2/organisations/${orgaId}/applications/${appId}/instances?useCache=false`, { method: 'POST', headers: { Authorization: `Bearer ${token}` },