[New] Observer updates are now enabled by default

This commit is contained in:
Robert von Burg 2023-09-11 09:37:33 +02:00
parent 7e45617c69
commit fa5296499d
Signed by: eitch
GPG Key ID: 75DB9C85C74331F7
1 changed files with 1 additions and 1 deletions

View File

@ -89,7 +89,7 @@ public abstract class InternalStrolchRealm implements StrolchRealm {
// observer updates
String updateObserversKey = makeRealmKey(getRealm(), PROP_ENABLE_OBSERVER_UPDATES);
this.updateObservers = configuration.getBoolean(updateObserversKey, false);
this.updateObservers = configuration.getBoolean(updateObserversKey, true);
if (this.updateObservers) {
this.observerHandler = new DefaultObserverHandler(container.getAgent(), this);
}