75b3dceab13809205cd0f7f3671b4701333f9ee4 max Tue Jun 25 07:51:33 2024 -0700 setting showEarlyErrors to on by default, refs #33992 diff --git src/hg/lib/cart.c src/hg/lib/cart.c index 641279f..3575e50 100644 --- src/hg/lib/cart.c +++ src/hg/lib/cart.c @@ -1412,31 +1412,31 @@ cartSetString(cart, "genome", db); cartSetString(cart, "hubUrl", url); cartRemove(cart, "db"); } } else if (!hDbIsActive(db)) errAbort("Can not find database '%s'", db); } struct cart *cartNew(char *userId, char *sessionId, char **exclude, struct hash *oldVars) /* Load up cart from user & session id's. Exclude is a null-terminated list of * strings to not include */ { cgiApoptosisSetup(); -if (cfgOptionBooleanDefault("showEarlyErrors", FALSE)) +if (cfgOptionBooleanDefault("showEarlyErrors", TRUE)) errAbortSetDoContentType(TRUE); if (cfgOptionBooleanDefault("suppressVeryEarlyErrors", FALSE)) htmlSuppressErrors(); setUdcCacheDir(); netSetTimeoutErrorMsg("A connection timeout means that either the server is offline or its firewall, the UCSC firewall or any router between the two blocks the connection."); struct cart *cart; struct sqlConnection *conn = cartDefaultConnector(); char *ex; boolean userIdFound = FALSE, sessionIdFound = FALSE; AllocVar(cart);