Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
A
azkaban_3.76
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
liqin
azkaban_3.76
Commits
107141cb
Commit
107141cb
authored
Mar 02, 2021
by
liqin
💬
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
bug fixed
parent
3e829a3a
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
4 additions
and
4 deletions
+4
-4
ExecutionControllerUtils.java
.../main/java/azkaban/executor/ExecutionControllerUtils.java
+1
-1
azkaban.properties
...an-exec-server/src/main/resources/conf/azkaban.properties
+1
-0
ExecutorServlet.java
...src/main/java/azkaban/webapp/servlet/ExecutorServlet.java
+1
-2
flowexecutionpanel.vm
...ces/azkaban/webapp/servlet/velocity/flowexecutionpanel.vm
+1
-1
No files found.
azkaban-common/src/main/java/azkaban/executor/ExecutionControllerUtils.java
View file @
107141cb
...
@@ -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-exec-server/src/main/resources/conf/azkaban.properties
View file @
107141cb
# 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
...
...
azkaban-web-server/src/main/java/azkaban/webapp/servlet/ExecutorServlet.java
View file @
107141cb
...
@@ -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
)
{
...
...
azkaban-web-server/src/main/resources/azkaban/webapp/servlet/velocity/flowexecutionpanel.vm
View file @
107141cb
...
@@ -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>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment