igiguere commented on code in PR #1632:
URL: https://github.com/apache/solr/pull/1632#discussion_r1297843290


##########
solr/core/src/java/org/apache/solr/servlet/ResponseUtils.java:
##########
@@ -135,4 +177,10 @@ public static ErrorInfo getTypedErrorInfo(Throwable ex, 
Logger log) {
     errorInfo.code = code;
     return errorInfo;
   }
+
+  private static boolean hideStackTrace(SolrCore core) {
+    return core != null
+        ? core.getCoreContainer().hideStackTrace()
+        : Boolean.parseBoolean(System.getProperty("solr.hideStackTrace"));

Review Comment:
   @stillalex  : Thanks for your comments.  For some reason, the unit test in 
this PR is now failing, before I even try to modify anything.  Is anyone aware 
of changes in the code path of a response that would prevent going though these 
methods of ResponseUtils?  I'll keep trying, but, no luck after a couple of 
hours so far.



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: issues-unsubscr...@solr.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscr...@solr.apache.org
For additional commands, e-mail: issues-h...@solr.apache.org

Reply via email to