in src/main/java/org/apache/sling/discovery/impl/support/StandardPropertyProvider.java [155:165]
protected void unbindHttpService(final ServiceReference reference) {
boolean changed = false;
synchronized ( this.endpoints ) {
if ( this.endpoints.remove(reference.getProperty(Constants.SERVICE_ID)) != null ) {
changed = true;
}
}
if ( changed && this.propagationService != null ) {
this.propagationService.setProperties(this.getRegistrationProperties());
}
}