Skip to content

Commit

Permalink
Fix dynamic job link url (#2189)
Browse files Browse the repository at this point in the history
  • Loading branch information
jamiesjc authored and jamiesjc committed May 16, 2019
1 parent c085615 commit 250c00c
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -800,7 +800,7 @@ private String getApplicationId(final ExecutableFlow exFlow, final String jobId,
try {
while (!finished) {
final LogData data = getExecutionJobLog(exFlow, jobId, offset, 50000, attempt);
if (data != null) {
if (data != null && data.getLength() != 0) {
applicationId = findApplicationIdFromLog(data.getData());
if (applicationId != null) {
return applicationId;
Expand Down

0 comments on commit 250c00c

Please sign in to comment.