9661cdfa5b5385b5e1e31b2ad691f54c7795e962 hiram Wed Jan 21 21:55:51 2026 -0800 adding the doneStatus to the row insert into the ottoTable refs #31811 diff --git src/hg/hubApi/liftOver.c src/hg/hubApi/liftOver.c index d0532be0a7c..7f0b6a0429a 100644 --- src/hg/hubApi/liftOver.c +++ src/hg/hubApi/liftOver.c @@ -321,23 +321,23 @@ */ (void) mailViaPipe(toAddr, "liftOver request", msg->string, fromAddr); /* some kind of response here back to the request page */ struct jsonWrite *jw = apiStartOutput(); jsonWriteString(jw, "msg", dyStringCannibalize(&msg)); apiFinishOutput(0,NULL,jw); char *ottoTable = cfgOption("ottoTable"); /* probably ottoRequest */ if (isNotEmpty(ottoTable)) { struct sqlConnection *conn = hConnectCentral(); if (sqlTableExists(conn, ottoTable)) { struct dyString *update = newDyString(0); sqlDyStringPrintf(update, - "INSERT INTO %s (fromDb, toDb, email, comment, requestTime) VALUES ( '%s','%s','%s','%s',now())", + "INSERT INTO %s (fromDb, toDb, email, comment, requestTime, doneStatus) VALUES ( '%s','%s','%s','%s',now(), 0)", ottoTable, fromGenome, toGenome, email, comment); sqlUpdate(conn, dyStringCannibalize(&update)); } hDisconnectCentral(&conn); } } } /* void apiLiftRequest(char *words[MAX_PATH_INFO]) */