I see that in regcode_simple_uninstall() the system performance configuration is removed:

/**
 * Implements hook_uninstall().
 */
function regcode_simple_uninstall() {
  \Drupal::service('config.factory')
    ->getEditable('system.performance')
    ->delete();
}

What's the reason for this? I don't see any other references to 'system.performance' in the module. Is this is a mistake?

Comments

MegaChriz created an issue. See original summary.

rpsu’s picture

Assigned: Unassigned » rpsu
Status: Active » Needs review
StatusFileSize
new761 bytes

Well, it is a mistake and it should not happen. The configuration name is incorrect. Also the config name in the schema was wrong.

  • rpsu authored a533db6 on 8.x-1.x
    Issue #3067554 by rpsu: remove correct config upon uninstall
    
rpsu’s picture

Status: Needs review » Fixed

Status: Fixed » Closed (fixed)

Automatically closed - issue fixed for 2 weeks with no activity.