formatting

This commit is contained in:
spencergibb
2020-09-21 16:40:20 -04:00
parent 5188344f1b
commit 3174d704bf
2 changed files with 4 additions and 3 deletions

View File

@@ -149,7 +149,8 @@ public class ConfigServerConfigDataLocationResolver
instanceMonitor.refresh();
return instanceMonitor;
});
// promote ConfigServerInstanceMonitor to bean so updates can be made to config client uri
// promote ConfigServerInstanceMonitor to bean so updates can be made to
// config client uri
bootstrapContext.addCloseListener(event -> {
ConfigServerInstanceMonitor configServerInstanceMonitor = event.getBootstrapContext()
.get(ConfigServerInstanceMonitor.class);

View File

@@ -59,8 +59,8 @@ public class ConfigServerInstanceProvider {
throw new IllegalStateException("No instances found of configserver (" + serviceId + ")");
}
if (log.isDebugEnabled()) {
log.debug("Located configserver (" + serviceId + ") via discovery. No of instances found: " + instances
.size());
log.debug("Located configserver (" + serviceId + ") via discovery. No of instances found: "
+ instances.size());
}
return instances;
}