Hello,
I developed a plugin using the Atlassian SDK against JIRA 7.4.4 that has an admin panel for project configuration. In my local development environment, the plugin works as expected and per-project configuration changes made through a REST module in the plugin are correctly persisted and retrieved (using PluginSettingsFactory#createGlobalSettings()
).
However, when I now deploy this plugin through UPM into an actual JIRA instance (v7.4.4) the REST module returns the correct status code but changes are not persisted to the backend.
Can anyone think of what I might check and possible reasons for why I might be seeing this behavior?
A related question is - how do I control where the logs for my plugin go? The log4j.properties
file bundled along with the plugin is expected to create a plugin specific configuration file, but I don’t see that file anywhere under JIRA_HOME.
Thanks.