This commit is contained in:
Nicholas Koben Kao
2024-01-24 22:15:12 -08:00
parent 911cc8d16b
commit db04d02d34
7 changed files with 124 additions and 65 deletions
+3 -1
View File
@@ -26,7 +26,8 @@ export async function POST(request: Request) {
.update(checkpointTable)
.set({
status: "success",
folder_path
folder_path,
updated_at: new Date(),
// build_log: build_log,
})
.where(eq(checkpointTable.id, checkpoint_id));
@@ -37,6 +38,7 @@ export async function POST(request: Request) {
.set({
status: "failed",
error_log,
updated_at: new Date(),
// status: "error",
// build_log: build_log,
})