Scheduling work queue writers

In Guidewire Studio™ for ContactManager, navigate in the Project window to configuration > config > scheduler and double-click scheduler-config.xml to open the file in the editor. In this XML file, you can change the settings for the ProcessSchedule named DuplicateContacts. The default entry sets the process to run at noon every Sunday.

<ProcessSchedule process="DuplicateContacts">
  <CronSchedule dayofmonth="?" dayofweek="SUN" hours="12"/>
</ProcessSchedule>

For example, the following entry would cause the process to run at midnight every night:

<ProcessSchedule process="DuplicateContacts">
  <CronSchedule hours="0"/>
</ProcessSchedule>

See also