Lazy plugin initialization and/or plugin initialization delayed?

Hi,

I would say I read somewhere there was a parameter supported in the atlassian-plugin.xml to delay plugin initialization until Jira is fully initialized.

After a lot of frustrating searching in Google, perhaps I dreamed it.

Does such configuration parameter exist?

Thanks,
Pablo.

1 Like

Hello @pablo,

as for JIRA, itself, you can specify whether the plugin starts up early or late by checking the value set in your atlassian-plugin.xml.

<atlassian-plugin>
  <plugin-info>
    <startup>late</startup>
  </plugin-info>
</atlassian-plugin>

The late in the above specifies that the plugin should startup late after key plugins JIRA needs have loaded.

Hope that helps!

Michael

2 Likes

That is what I was looking for! Thanks @michael.griffel