Skip to content

Commit

Permalink
[New] Observer updates are now enabled by default
Browse files Browse the repository at this point in the history
  • Loading branch information
eitch committed Sep 11, 2023
1 parent 7e45617 commit fa52964
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ public void initialize(ComponentContainer container, ComponentConfiguration conf

// 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);
}
Expand Down

0 comments on commit fa52964

Please sign in to comment.