Commit 107141cb authored by liqin's avatar liqin 💬

bug fixed

parent 3e829a3a
...@@ -236,7 +236,7 @@ public class ExecutionControllerUtils { ...@@ -236,7 +236,7 @@ public class ExecutionControllerUtils {
try { try {
msg.alertOnFirstError(flow); msg.alertOnFirstError(flow);
} catch (Exception e) { } catch (Exception e) {
logger.error("Failed to send first error email." + e.getMessage(), e); logger.error("Failed to send first error sms." + e.getMessage(), e);
} }
} }
......
# Azkaban Personalization Settings # Azkaban Personalization Settings
azkaban.event.reporting.enabled=true
azkaban.name=Azkaban azkaban.name=Azkaban
azkaban.label=Azkaban azkaban.label=Azkaban
azkaban.color=#FF3601 azkaban.color=#FF3601
......
...@@ -585,8 +585,7 @@ public class ExecutorServlet extends LoginAbstractAzkabanServlet { ...@@ -585,8 +585,7 @@ public class ExecutorServlet extends LoginAbstractAzkabanServlet {
} }
final int attempt = this.getIntParam(req, "attempt", node.getAttempt()); final int attempt = this.getIntParam(req, "attempt", node.getAttempt());
final LogData data = this.executorManagerAdapter final LogData data = this.executorManagerAdapter.getExecutionJobLog(exFlow, jobId, offset, length, attempt);
.getExecutionJobLog(exFlow, jobId, offset, length, attempt);
ret.putAll(appendLogData(data, offset)); ret.putAll(appendLogData(data, offset));
} catch (final ExecutorManagerException e) { } catch (final ExecutorManagerException e) {
......
...@@ -217,7 +217,7 @@ ...@@ -217,7 +217,7 @@
<ul> <ul>
<li>Level 1: block job A until the previous flow job A has completed.</li> <li>Level 1: block job A until the previous flow job A has completed.</li>
<li>Level 2: block job A until the previous flow job A's children have completed.</li> <li>Level 2: block job A until the previous flow job A's children have completed.</li>
</li> </ul>
</span> </span>
</div> </div>
</div> </div>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment