- πΊπΈUnited States nicxvan
I think this is a duplicate π Order of alter hooks is not always respected by ModuleHandler Needs work
Even having the correct weight by applying #2679008: Module weight is not taken into account after module installation β my tour_builder hook_entity_type_alter is not called according to (weight: 1) after Tour UI (weight: 0) installing the module.
function tour_builder_entity_type_alter(array &$entity_types) {
Running drush cache-rebuild
makes module function as expected.
drush en tour_ui --yes
drush dl tour_builder --yes
drush @drupal.d8 pm-uninstall tour_builder --yes
drush @drupal.d8 pm-enable tour_builder --yes
drush @drupal.d8 cache-rebuild
The patch from #2 works for me but in #2679008-16: Module weight is not taken into account after module installation β @tstoeckler suggest
So maybe there is another more fundamental cache invalidation bug that you have uncovered and the cache clear just fixes the symptom by wiping all caches.
Needs work
11.0 π₯
extension system
The change is currently missing an automated test that fails when run with the original code, and succeeds when the bug has been fixed.
Not all content is available!
It's likely this issue predates Contrib.social: some issue and comment data are missing.
I think this is a duplicate π Order of alter hooks is not always respected by ModuleHandler Needs work