# Enable the queue and make it fast
self.patch(self.config.Scheduling.Options.WorkQueues, "Enabled", True)
self.patch(self.config.Scheduling.Options.WorkQueues, "RequestDelaySeconds", 0.1)
self.patch(self.config.Scheduling.Options.WorkQueues, "ReplyDelaySeconds", 0.1)
self.patch(self.config.Scheduling.Options.WorkQueues, "AutoReplyDelaySeconds", 0.1)
self.patch(self.config.Scheduling.Options.WorkQueues, "AttendeeRefreshBatchDelaySeconds", 0.1)
self.patch(self.config.Scheduling.Options.WorkQueues, "AttendeeRefreshBatchIntervalSeconds", 0.1)
# Reschedule quickly
self.patch(JobItem, "failureRescheduleInterval", 1)
self.patch(JobItem, "lockRescheduleInterval", 1)
Would it help faster recipient inbox update if I change this value to 1 or 2 secs?Would there be any side effects?On Thu, Nov 24, 2016 at 6:09 PM, Gaurav Jain <monkeyfdude@gmail.com> wrote:Hi,Can you please tell the meaning of in stdconfig.plist:
<!-- Number of seconds delay for a queued scheduling request/cancel -->
<key>RequestDelaySeconds</key> <integer>5</integer> Regards,