Log files contain error messages requesting manual upgrades to workflow configuration

Still need help?

The Atlassian Community is here for you.

Ask the community

Symptoms

The following error appears in the logs:


Detected reference to Create Job Post-Function in filesystem-configured workflow 'blahblah'
for transition 'rhubarb'. Please manually upgrade the configuration for this workflow by
updating the post-function <arg name="class.name" /> elements containing
'com.atlassian.jira.plugin.ext.perforce.workflow.CreateJobFunction' to the new namespace:
'com.atlassian.jirafisheyeplugin.perforce.workflow.CreateJobFunction'.

Cause

The upgrade task for upgrading Perforce plugin workflows to Fisheye-JIRA plugin 2.0 workflows cannot automatically upgrade workflows loaded from file system xml descriptors at runtime.

Resolution

Upgrade the workflows manually by locating your JIRA workflow xml files in your JIRA webapp and updating the following elements:


...
<post-functions>
...
<function type="class">
<arg name="class.name">com.atlassian.jira.plugin.ext.perforce.workflow.CreateJobFunction</arg>
</function>
...
</post-functions>

to:


...
<post-functions>
...
<function type="class">
<arg name="class.name">com.atlassian.jirafisheyeplugin.perforce.workflow.CreateJobFunction</arg>
</function>
...
</post-functions>

Last modified on Jul 31, 2018

Was this helpful?

Yes
No
Provide feedback about this article
Powered by Confluence and Scroll Viewport.