in src/main/java/org/apache/sling/commons/threads/impl/DefaultThreadPoolManager.java [389:399]
public void update(final ThreadPoolConfig config, final String name, final String pid) {
if ( this.pool != null ) {
this.pool.setName(name);
if ( !this.config.equals(config) ) {
this.pool.setPool(new DefaultThreadPool(name, config));
}
}
this.config = config;
this.name = name;
this.pid = pid;
}