Jumoo / jumoo-docs

Documentation for uSync and Translation manager
https://docs.jumoo.co.uk
0 stars 9 forks source link

New: DisableNotificationSuppression #21

Open KevinJump opened 1 year ago

KevinJump commented 1 year ago

Version : uSync 12 Thing: Config

From v12 uSync will use the Scope.Notifications.Suppress feature from Umbraco 12 , that means notifications for things like ContentSaved and ContrentPublished are not fired when the item is saved or published but rather in bulk at the end of an import process.

This means that notifications will fire but they won't necessary fire at the time the notification happens. this speeds up any imports because it doesn't fire events such as cache or examine rebuilds until the end of the process.

this shouldn't cause any issues but if it does you can use the Configuration option DisableNotificationSuppression to get uSync not to use the new Suppress feature, then all notifications will fire as they happen.

Default settings:

"uSync" : {
   "Settings" : {
      "DisableNotificationSuppression" : false 
    }
}