diff --git a/src/routes/deployRouter.js b/src/routes/deployRouter.js index d6a151604d84fb0f4c8ecc9ed11c10bcbbd4cb53..afd312251997aff4d52a5690773e8830da05c92c 100644 --- a/src/routes/deployRouter.js +++ b/src/routes/deployRouter.js @@ -51,8 +51,8 @@ deployRouter.get("/clearArchitecture", async (req, res) => { deployRouter.post("/scaleOut", async (req, res) => { try { - const { codeId } = req.body; - await scaleOut(codeId); + const { id } = req.body; + await scaleOut(id); res.status(200).json({ message: "Scale Out erfolgreich" }); } catch (e) { console.error(e);