Skip to content

Commit

Permalink
Add space to message string (#2009)
Browse files Browse the repository at this point in the history
  • Loading branch information
ypadron-in authored and jamiesjc committed Oct 29, 2018
1 parent 883ec32 commit a1b169b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion azkaban-common/src/main/java/azkaban/utils/Emailer.java
Expand Up @@ -150,7 +150,7 @@ public void alertOnSuccess(final ExecutableFlow flow) {
final MailCreator mailCreator = getMailCreator(flow);
final boolean mailCreated = mailCreator.createSuccessEmail(flow, message, this.azkabanName,
this.scheme, this.clientHostname, this.clientPortNumber);
sendEmail(message, mailCreated, "success email message for execution" + flow.getExecutionId());
sendEmail(message, mailCreated, "success email message for execution " + flow.getExecutionId());
}

/**
Expand Down

0 comments on commit a1b169b

Please sign in to comment.