- Issue created by @emircan erkul
- Assigned to abhishek_virasat
- Issue was unassigned.
- 🇹🇷Turkey emircan erkul Turkey
Update: might not be related, after removing settings.local.php this error disappears. In my environment, there are problems with NullBackendFactory
- Status changed to Closed: works as designed
7 months ago 9:41am 18 April 2024 - 🇹🇷Turkey emircan erkul Turkey
Find out one of our custom modules causing this problem. Tracing that one was extremely difficult maybe impossible, found by checking and disabling things manually.
- $build['#cache']['contexts'][] = ['url', 'user'];
- $build['#cache']['tags'][] = ['user:' . $current_uid, 'group_content_list'];
+ $build['#cache']['contexts'] = array_merge($build['#cache']['contexts'], ['url', 'user']);
+ $build['#cache']['tags'] = array_merge($build['#cache']['tags'], ['user:' . $current_uid, 'group_content_list']);