651392e779790538b17faea2a79ffce9b6f01487
lrnassar
Tue Dec 14 16:19:17 2021 -0800
Updating the hubCheck message to reflect it can take up to 20 minutes, refs #28646
diff --git src/hg/hgHubConnect/hgHubConnect.c src/hg/hgHubConnect/hgHubConnect.c
index 74402b1..fcb25b5 100644
--- src/hg/hgHubConnect/hgHubConnect.c
+++ src/hg/hgHubConnect/hgHubConnect.c
@@ -1533,31 +1533,31 @@
puts("");
printIncludes();
jsInline("trackData = [];\n");
char *hubUrl = cgiOptionalString("validateHubUrl");
jsInline("document.body.style.margin = 0;\n");
// simulate the look and feel of a dialog window with a blue bar at the top
puts("
");
jsOnEventByIdF("click", "windowX", "closeIframe()");
if (isEmpty(hubUrl))
- printf("Please wait, loading and checking hub, this can take 15 seconds to 5 minutes.");
+ printf("Please wait, loading and checking hub. This usually takes a minute or two but can take up to 20 minutes for big hubs.");
else
{
puts("
");
puts("
");
jsOnEventByIdF("click", "reloadButton", "reloadIframe()");
jsOnEventByIdF("click", "closeButton", "closeIframe()");
jsInline("document.onkeydown = function(evt) { if (evt.keyCode===27) { closeIframe() } };");
int retVal = doValidateNewHub(hubUrl);
if (retVal == 0)
printf("
Finished checking %s
", hubUrl);
puts("");
puts("
Our command line tool hubCheck "
"can be used to obtain the same output from a Unix command line.
");
puts("
To download the hubCheck tool for Linux, run these commands"