Skip to content

Commit

Permalink
[GOBBLIN-1962] Fix failed to acquire job lock
Browse files Browse the repository at this point in the history
  • Loading branch information
Apexhit authored Nov 27, 2023
1 parent 35304e9 commit 5968483
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -961,7 +961,7 @@ private void unlockJob() {
try {
this.jobLockOptional.get().close();
} catch (IOException e) {
LOG.error(String.format("Failed to close job lock for job %s: %s", this.jobContext.getJobId(), e), e);
LOG.error(String.format("Failed to close job lock for job %s: %s", this.jobProps.getProperty(ConfigurationKeys.JOB_NAME_KEY), e), e);
} finally {
this.jobLockOptional = Optional.absent();
}
Expand Down

0 comments on commit 5968483

Please sign in to comment.