-
Type:
Bug
-
Resolution: Not a bug
-
Priority:
Low
-
None
-
Affects Version/s: 8.5.1
-
Component/s: DVCS Connector
-
8.05
-
1
-
Severity 3 - Minor
Issue Summary
We would like to change the Scheduler job "Guaranteed Delivery" com.atlassian.jira.plugin.devstatus.provider.DevSummaryUpdateJob increasing the poll delay to 30 minutes, however defining the Jira property
jira.devstatus.provider.poll.interval to 1800000 was not considered by Jira's scheduler.
(30 minutes)
Creating the property at <jira-home>/jira-config.properties and restarting Jira is still showing the schedule job com.atlassian.jira.plugin.devstatus.provider.DevSummaryUpdateJob to run each 5 minutes.
Steps to Reproduce
- Open Admin Cog > System > Scheduler details
- Search for the job com.atlassian.jira.plugin.devstatus.provider.DevSummaryUpdateJob and click at the <show more> to get the details. The "schedule" line shows the interval time between each execution. The default is 5 minutes (300000 ms)
- Stop Jira
- Edit (or create if it does not exist) the file <Jira home>/jira-config.properties
- Add the property
jira.devstatus.provider.poll.interval=1800000
- Restart Jira
- Open Admin Cog > System > Scheduler details and expand again the job com.atlassian.jira.plugin.devstatus.provider.DevSummaryUpdateJob
Note:
- Even after removing the entry and expecting that after Jira Restart it will use the Jira Property, the job com.atlassian.jira.plugin.devstatus.provider.DevSummaryUpdateJobit remains with the poll interval of 5 minutes.
Expected Results
The interval will be now 30 minutes (1800000 ms)
Actual Results
It was still showing the previous value.
Workaround
Update the interval at the database
- Postgres:
UPDATE “CLUSTEREDJOB” SET “INTERVAL_MILLIS” = 1800000 WHERE “JOB_RUNNER_KEY” = ‘com.atlassian.jira.plugin.devstatus.provider.DevSummaryUpdateJob’