ca3f45c0d7c8ea372d9202eb5160c0f9268c95f2
hiram
  Wed Sep 11 10:38:12 2019 -0700
use the correct default delay fraction refs #23217

diff --git src/hg/hgTables/hgTables.c src/hg/hgTables/hgTables.c
index 5e8d1e1..714ef85 100644
--- src/hg/hgTables/hgTables.c
+++ src/hg/hgTables/hgTables.c
@@ -58,32 +58,30 @@
 struct hash *oldVars;	/* The cart before new cgi stuff added. */
 char *genome;		/* Name of genome - mouse, human, etc. */
 char *database;		/* Current genome database - hg17, mm5, etc. */
 char *freezeName;	/* Date of assembly. */
 struct grp *fullGroupList;	/* List of all groups. */
 struct grp *curGroup;	/* Currently selected group. */
 struct trackDb *fullTrackList;	/* List of all tracks in database. */
 struct hash *fullTableToTdbHash;        /* All tracks and subtracks keyed by tdb->table field. */
 struct trackDb *curTrack;	/* Currently selected track. */
 char *curTable;		/* Currently selected table. */
 struct joiner *allJoiner;	/* Info on how to join tables. */
 
 static struct pipeline *compressPipeline = (struct pipeline *)NULL;
 
 static boolean issueBotWarning = FALSE;
-#define warnMs 10000    /* warning at 10 to 20 second delay */
-#define exitMs 20000    /* error 429 Too Many Requests after 20+ second delay */
 
 char *gsTemp = NULL;
 int saveStdout = -1;
 
 /* --------------- HTML Helpers ----------------- */
 
 void hPrintSpaces(int count)
 /* Print a number of non-breaking spaces. */
 {
 int i;
 for (i=0; i<count; ++i)
     hPrintf("&nbsp;");
 }
 
 static void stripHtmlTags(char *text)
@@ -1768,27 +1766,27 @@
 
 	gsTemp = NULL;
 	}	
     }
 
 
 /* Save variables. */
 cartCheckout(&cart);
 }
 
 int main(int argc, char *argv[])
 /* Process command line. */
 {
 
 long enteredMainTime = clock1000();
-issueBotWarning = earlyBotCheck(enteredMainTime, "hgTables", 1.5, warnMs, exitMs);
+issueBotWarning = earlyBotCheck(enteredMainTime, "hgTables", 0.0, 0, 0);
 
 pushCarefulMemHandler(LIMIT_2or6GB);
 htmlPushEarlyHandlers(); /* Make errors legible during initialization. */
 cgiSpoof(&argc, argv);
 
 hgTables();
 
 cgiExitTime("hgTables", enteredMainTime);
 
 return 0;
 }