Commit 107141cb authored by liqin's avatar liqin 💬

bug fixed

parent 3e829a3a
......@@ -236,7 +236,7 @@ public class ExecutionControllerUtils {
try {
msg.alertOnFirstError(flow);
} 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.event.reporting.enabled=true
azkaban.name=Azkaban
azkaban.label=Azkaban
azkaban.color=#FF3601
......
......@@ -585,8 +585,7 @@ public class ExecutorServlet extends LoginAbstractAzkabanServlet {
}
final int attempt = this.getIntParam(req, "attempt", node.getAttempt());
final LogData data = this.executorManagerAdapter
.getExecutionJobLog(exFlow, jobId, offset, length, attempt);
final LogData data = this.executorManagerAdapter.getExecutionJobLog(exFlow, jobId, offset, length, attempt);
ret.putAll(appendLogData(data, offset));
} catch (final ExecutorManagerException e) {
......
......@@ -217,7 +217,7 @@
<ul>
<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>
</ul>
</span>
</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