b39119efb42cec014dfe6cba948bc7717b0176c4 lrnassar Fri Oct 20 14:10:18 2023 -0700 Changing the abuse message to point to private ML instead of public, refs #22423 diff --git src/hg/lib/botDelay.c src/hg/lib/botDelay.c index 8d1dc6c..919156d 100644 --- src/hg/lib/botDelay.c +++ src/hg/lib/botDelay.c @@ -176,31 +176,31 @@ puts("Content-Type:application/json"); printf("Status: %d %s\n", err429, err429Msg); if (retryAfterSeconds > 0) printf("Retry-After: %d", retryAfterSeconds); puts("\n"); /* blank line between header and body */ struct jsonWrite *jw = jsonWriteNew(); jsonWriteObjectStart(jw, NULL); jsonWriteString(jw, "error", err429Msg); jsonWriteNumber(jw, "statusCode", err429); char msg[1024]; safef(msg, sizeof(msg), "Your host, %s, has been sending too many requests " "lately and is unfairly loading our site, impacting performance for " - "other users. Please contact genome@soe.ucsc.edu to ask that your site " + "other users. Please contact genome-www@soe.ucsc.edu to ask that your site " "be reenabled. Also, please consider downloading sequence and/or " "annotations in bulk -- see http://genome.ucsc.edu/downloads.html.", hogHost); jsonWriteString(jw, "statusMessage", msg); if (retryAfterSeconds > 0) jsonWriteNumber(jw, "retryAfterSeconds", retryAfterSeconds); jsonWriteObjectEnd(jw); puts(jw->dy->string); } static void hogExit(char *cgiName, long enteredMainTime, char *exitType, int retryAfterSeconds)