chore(version): bump version

This commit is contained in:
Mauricio Siu
2024-10-30 21:48:19 -06:00
parent 97715a47b3
commit 6c92e6efc9
17 changed files with 14 additions and 31 deletions

View File

@@ -20,10 +20,8 @@ export const schedule = async (job: QueueJob) => {
body: JSON.stringify(job),
});
const data = await result.json();
console.log(data);
return data;
} catch (error) {
console.log(error);
throw error;
}
};
@@ -39,10 +37,8 @@ export const removeJob = async (job: QueueJob) => {
body: JSON.stringify(job),
});
const data = await result.json();
console.log(data);
return data;
} catch (error) {
console.log(error);
throw error;
}
};
@@ -58,10 +54,8 @@ export const updateJob = async (job: QueueJob) => {
body: JSON.stringify(job),
});
const data = await result.json();
console.log(data);
return data;
} catch (error) {
console.log(error);
throw error;
}
};

View File

@@ -18,10 +18,8 @@ export const deploy = async (jobData: DeploymentJob) => {
});
const data = await result.json();
console.log(data);
return data;
} catch (error) {
console.log(error);
throw error;
}
};

View File

@@ -62,9 +62,6 @@ export const setupDockerContainerTerminalWebSocketServer = (
stream
.on("close", (code: number, signal: string) => {
console.log(
`Stream :: close :: code: ${code}, signal: ${signal}`,
);
ws.send(`\nContainer closed with code: ${code}\n`);
conn.end();
})