Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Any silo that is has been correctly configured and synchronized, will automatically be updated. kept up to date by the system.


In the following configuration file App_Config/Include/damforsitecore/DFS.Connect.config there is a hook, which runs is a timer that by default runs every 1 minute. The purpose of this background process it is to listen for any changes in the DAM and synchronize them back to the silo in Sitecore. The timer can be configured to different intervals with which it runs, or completely disables this background process by uncomment the configuration. If you disable this hook, then remember that synchronization is a manual task.then subsequently make sure that the changes are synchronized into the corresponding DFS silo. You may change the interval between when the timer looks for changes in the DAM.

You may also stop the timer completely if you wish. This is done by commenting out the configuration entirely (practically removing it). If you choose to disable the timer, then you have to manually synchronize the DFS Silo every time a change is done in the DC to have the silo up to date.

This is how the timer (hook) looks in the configuration file:

Code Block
languagexml
linenumberstrue
<hooks>
	<hook type="DFS.Connect.Hooks.DetectDamChangesLoader, DFS.Connect">
		<param name="agent" type="DFS.Connect.DetectDamChangesAgent, DFS.Connect">
			<param name="repository" ref="DFS.Connect/assetSiloRepository" />
		</param>
			<param name="interval">00:01:00</param>
	</hook>
</hooks> 


Table of Contents