felixcheung commented on a change in pull request #3358: [ZEPPELIN-2444] Better
error message on shell timeout being reached.
URL: https://github.com/apache/zeppelin/pull/3358#discussion_r282761598
##########
File path: shell/src/main/java/org/apache/zeppelin/shell/ShellInterpreter.java
##########
@@ -132,7 +132,7 @@ public InterpreterResult internalInterpret(String cmd,
String message = outStream.toString();
if (exitValue == 143) {
code = Code.INCOMPLETE;
- message += "Paragraph received a SIGTERM\n";
+ message += "Timeout of " + getProperty(TIMEOUT_PROPERTY) + " ms to run
reached.\n";
Review comment:
hmm, I'm not sure these are the same? SIGTERM is not a timeout?
----------------------------------------------------------------
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.
For queries about this service, please contact Infrastructure at:
[email protected]
With regards,
Apache Git Services