Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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