"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

tip/resting Created with Sketch.

Remember to always generate an XML Backup before performing direct database procedures to have a recent rollback point!

  1. Shutdown JIRA;
  2. Check if there are any custom fields left, which were configured during the Capture for JIRA installation:

    SELECT * FROM customfield WHERE customfieldtypekey LIKE '%bonfire%';
    
  3. Delete the custom fields, if existing:

    DELETE FROM customfield WHERE customfieldtypekey LIKE '%bonfire%';
  4. Also remove the entries from the propertyentry table:

    DELETE FROM propertyentry WHERE property_key LIKE '%notification%' AND property_key LIKE '%bonfire%';
  5. Start JIRA;
  6. Reindex your JIRA database in JIRA Administration > System > Advanced > Indexing;

Last modified on Nov 12, 2018

Was this helpful?

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