kfaraz commented on code in PR #16286:
URL: https://github.com/apache/druid/pull/16286#discussion_r1566328866
##########
indexing-service/src/main/java/org/apache/druid/indexing/overlord/TaskQueue.java:
##########
@@ -428,7 +428,7 @@ private void manageInternalCritical(
errorMessage = e.getMessage();
} else {
errorMessage = "Failed while waiting for the task to be ready to
run. "
- + "See overlord logs for more
details.";
+ + "See overlord logs for more details. Error: " +
e.getMessage();
Review Comment:
Something like this would be more user-friendly:
```suggestion
errorMessage = StringUtils.format("Encountered
error[%s] while waiting for task to be ready. See Overlord logs for more
details.", e.getMessage());
```
--
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: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]