Strongarm features are reported on "Failed to get available update data" list on /***/admin/reports/updates

These items are local to the site and will not be available for update from drupal.org.

I suggest to distinguish between modules that are "updatable" and not and to avoid trying to find updates for custom modules and features.

Solution suggested in #1266614: Custom modules, Strongarm and Features on "Failed to get available update data" list is to implement hook hook_update_projects_alter and hide features from update list.

function mytest_update_projects_alter(&$projects) {
  // Hide a site-specific module from the list.
    unset($projects['mytest']);
}

Also refer to Features issue #1307198: Features not to be reported on "Failed to get available update data" list

Comments

bblake’s picture

Status: Active » Closed (works as designed)

I think what you're referring to is that features that contain strongarm configurations are displayed on that available updates page. There's nothing that strongarm can do to hide the features on that page as that's a features issue, not a strongarm issue.

It looks like there's a solution being proposed/worked on for the update module, which is where that feature should be implemented.