From da77afef3e9b8ec5497ed99ee244bd22aa854c42 Mon Sep 17 00:00:00 2001 From: koki-develop Date: Sat, 28 Feb 2026 09:20:55 +0900 Subject: [PATCH] Remove backward compatibility that copies compile result to run on compile failure Co-Authored-By: Claude --- api/src/api/v2.js | 5 ----- 1 file changed, 5 deletions(-) diff --git a/api/src/api/v2.js b/api/src/api/v2.js index f8e2b5752..00d725732 100644 --- a/api/src/api/v2.js +++ b/api/src/api/v2.js @@ -245,11 +245,6 @@ router.post('/execute', async (req, res) => { const box = await job.prime(); let result = await job.execute(box); - // Backward compatibility when the run stage is not started - if (result.run === undefined) { - result.run = result.compile; - } - return res.status(200).send(result); } catch (error) { logger.error(`Error executing job: ${job.uuid}:\n${error}`);