in src/main/java/org/apache/sling/discovery/impl/standalone/NoClusterDiscoveryService.java [187:196]
private void updatePropertiesCache() {
final Map<String, String> newProps = new HashMap<String, String>();
for(final ProviderInfo info : this.providerInfos) {
newProps.putAll(info.properties);
}
this.cachedProperties = newProps;
if ( this.logger.isDebugEnabled() ) {
this.logger.debug("New properties: {}", this.cachedProperties);
}
}