in src/java/org/apache/fulcrum/yaafi/service/reconfiguration/ReconfigurationServiceImpl.java [211:230]
public void run() {
ReconfigurationEntry[] list = null;
while (this.terminateNow == false) {
list = this.getReconfigurationEntryList();
try {
for (ReconfigurationEntry reconfigurationEntry : list) {
if (reconfigurationEntry.hasChanged())
this.onReconfigure(reconfigurationEntry);
}
Thread.sleep(this.interval);
} catch (InterruptedException e) {
continue;
} catch (Exception e) {
String msg = "The ReconfigurationService had a problem";
this.getLogger().error(msg, e);
continue;
}
}
}