Skip to content
Snippets Groups Projects
Commit b2ea79c8 authored by Robin Leber's avatar Robin Leber
Browse files

fix: naming

parent a502037b
No related branches found
No related tags found
No related merge requests found
......@@ -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);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment