private void startServerPluginContainer() throws RuntimeException {
log.info("Starting the master server plugin container...");
try {
ServerPluginServiceMBean mbean = LookupUtil.getServerPluginService();
mbean.startMasterPluginContainerWithoutSchedulingJobs();
} catch (Exception e) {
error += (error.isEmpty() ? "" : ", ") + "server plugin container";
throw new RuntimeException("Cannot start the master server plugin container!", e);
}
}