b36d37d0d18dbb63cbbeefd4d22bd70046526382 hiram Mon Jun 21 14:23:58 2021 -0700 do not need the extra comment about the elimination of the hgBotDelay refs #23217 diff --git src/hg/hgPcr/hgPcr.c src/hg/hgPcr/hgPcr.c index 8647c23..12c89b8 100644 --- src/hg/hgPcr/hgPcr.c +++ src/hg/hgPcr/hgPcr.c @@ -637,34 +637,30 @@ { printf("No matches to %s %s in %s", gpi->fPrimer, gpi->rPrimer, server->targetDb->description); } gfDisconnect(&conn); } boolean doPcr(struct pcrServer *server, struct targetPcrServer *targetServer, char *fPrimer, char *rPrimer, int maxSize, int minPerfect, int minGood, boolean flipReverse) /* Do the PCR, and show results. */ { struct errCatch *errCatch = errCatchNew(); boolean ok = FALSE; -/* used to have hgBotDelay() here, replaced with earlyBotCheck() - * at the beginning of main() to output message here if in delay time - * 2021-06-21 - Hiram - */ if (issueBotWarning) { char *ip = getenv("REMOTE_ADDR"); botDelayMessage(ip, botDelayMillis); } if (flipReverse) reverseComplement(rPrimer, strlen(rPrimer)); if (errCatchStart(errCatch)) { struct gfPcrInput *gpi; AllocVar(gpi); gpi->fPrimer = fPrimer; gpi->rPrimer = rPrimer;