Skip to content

Commit

Permalink
Move FullStop Above.
Browse files Browse the repository at this point in the history
  • Loading branch information
ayushtkn committed Aug 28, 2024
1 parent 616981d commit 9dc1b51
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1686,7 +1686,7 @@ public Map<ApplicationAccessType, String> getApplicationACLs() {
if (serviceState != STATE.STARTED) {
throw new TezUncheckedException(
"Cannot get ApplicationACLs before all services have started, The current service state is " + serviceState
+ getShutdownTimeString());
+ "." + getShutdownTimeString());
}
return taskSchedulerManager.getApplicationAcls();
}
Expand Down Expand Up @@ -1749,7 +1749,7 @@ public void setQueueName(String queueName) {

private String getShutdownTimeString() {
if (shutdownHandler != null && shutdownHandler.shutdownTime != null) {
return ". The shutdown hook started at " + shutdownHandler.shutdownTime;
return " The shutdown hook started at " + shutdownHandler.shutdownTime;
}
return "";
}
Expand Down

0 comments on commit 9dc1b51

Please sign in to comment.