Skip to content

Commit

Permalink
YARN-11240. Fix incorrect placeholder in yarn-module. (#4678). Contri…
Browse files Browse the repository at this point in the history
…buted by fanshilun

Signed-off-by: Ayush Saxena <ayushsaxena@apache.org>
  • Loading branch information
slfan1989 committed Aug 24, 2022
1 parent 052d7f2 commit 75aff24
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1139,7 +1139,7 @@ public void syncSysFs(Service yarnApp) {
LOG.info("YARN sysfs synchronized.");
}
} catch (IOException | URISyntaxException | InterruptedException e) {
LOG.error("Fail to sync service spec: {}", e);
LOG.error("Fail to sync service spec.", e);
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -553,7 +553,7 @@ public void testSyncSysFS() {
am.stop();
am.close();
} catch (Exception e) {
LOG.error("Fail to sync sysfs: {}", e);
LOG.error("Fail to sync sysfs.", e);
Assert.fail("Fail to sync sysfs.");
}
}
Expand Down

0 comments on commit 75aff24

Please sign in to comment.