"Notification exists for uninstalled and unrequested plugin: com.atlassian.bonfire.plugin"
Symptoms
The following appears in the atlassian-jira.log
:
2013-07-24 13:10:21,479 http-bio-443-exec-995 WARN bob 790x149767x1 ztpk47 10.1.2.2 /rest/plugins/1.0/notifications/<username> [notification.rest.representations.NotificationRepresentationFactoryImpl]Notification exists for uninstalled and unrequested plugin: com.atlassian.bonfire.plugin
Cause
There are remaining Capture for JIRA fields in JIRA which are not being used but are still trying to be read by the database.
Resolution
Remember to always generate an XML Backup before performing direct database procedures to have a recent rollback point!
- Shutdown JIRA;
Check if there are any custom fields left, which were configured during the Capture for JIRA installation:
SELECT * FROM customfield WHERE customfieldtypekey LIKE '%bonfire%';
Delete the custom fields, if existing:
DELETE FROM customfield WHERE customfieldtypekey LIKE '%bonfire%';
Also remove the entries from the propertyentry table:
DELETE FROM propertyentry WHERE property_key LIKE '%notification%' AND property_key LIKE '%bonfire%';
- Start JIRA;
- Reindex your JIRA database in JIRA Administration > System > Advanced > Indexing;