YARN-11240. Fix incorrect placeholder in yarn-module. (#4678). Contributed by fanshilun
Signed-off-by: Ayush Saxena <ayushsaxena@apache.org>
This commit is contained in:
parent
052d7f286e
commit
75aff247ae
|
@ -1139,7 +1139,7 @@ public class ServiceScheduler extends CompositeService {
|
|||
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);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -553,7 +553,7 @@ public class TestServiceAM extends ServiceTestUtils{
|
|||
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.");
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue