Jira Scheduler is not considering the jira.devstatus.provider.poll.interval Jira Property

XMLWordPrintable

    • 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

      1. Open Admin Cog > System > Scheduler details
      2. 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)
      3. Stop Jira
      4. Edit (or create if it does not exist) the file <Jira home>/jira-config.properties
      5. Add the property
        jira.devstatus.provider.poll.interval=1800000
        
      1. Restart Jira
      2. 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’
        

            Assignee:
            Unassigned
            Reporter:
            Murakami [Atlassian Support]
            Votes:
            0 Vote for this issue
            Watchers:
            3 Start watching this issue

              Created:
              Updated:
              Resolved: