1cbaa9ddcb7a13929a2217db78d6b36ff738fe15 hiram Fri Apr 24 10:52:34 2026 -0700 doneStatus can simply be status refs #31811 diff --git src/hg/hubApi/liftOver.c src/hg/hubApi/liftOver.c index 1edf5fc2ea2..aa800219b03 100644 --- src/hg/hubApi/liftOver.c +++ src/hg/hubApi/liftOver.c @@ -332,23 +332,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 (requestType, fromDb, toDb, email, comment, requestTime, doneStatus, buildDir) VALUES ( 'liftOver', '%s','%s','%s','%s',now(), 0, '')", + "INSERT INTO %s (requestType, fromDb, toDb, email, comment, requestTime, status, buildDir) VALUES ( 'liftOver', '%s','%s','%s','%s',now(), 0, '')", ottoTable, fromGenome, toGenome, email, comment); sqlUpdate(conn, dyStringCannibalize(&update)); } hDisconnectCentral(&conn); } } } /* void apiLiftRequest(char *words[MAX_PATH_INFO]) */