- Issue created by @Alexander Tallqvist
- heddn Nicaragua
Can we get the error as logged in the drupal logs too? The output from drush doesn't provide enough details to investigate this.
- 🇫🇮Finland Alexander Tallqvist
Unfortunately nothing gets logged into Drupals logs. The only thing I'm getting is this in my terminal:
Module Update ID Type Description
-------------------- ------------------------- --------------- -------------------------------------------------------
group_content_menu 9301 hook_update_n 9301 - Update group content menus to be publisheable.
group_content_menu convert_to_revisionable post-update Update group content menus to be revisionable.
-------------------- ------------------------- --------------- -------------------------------------------------------// Do you wish to run the specified pending updates?: yes.
> [notice] Update started: group_content_menu_update_9301
> [error] Class name must be a valid object or a string
> [error] Update failed: group_content_menu_update_9301
[error] Update aborted by: group_content_menu_update_9301
[error] Finished performing updates. - heddn Nicaragua
Can you xdebug or anything in the update to see what is happening?
- 🇫🇮Finland Alexander Tallqvist
@heddn I'll get back to you at the end of the month when doing updates again.
- 🇫🇮Finland Alexander Tallqvist
Hi again! I used
drush php:eval "module_load_include('install', 'group_content_menu');group_content_menu_update_9301();"
for debugging and was able to produce this:Error: Class name must be a valid object or a string in /app/web/core/lib/Drupal/Core/Entity/EntityTypeManager.php on line 283 #0 /app/web/core/lib/Drupal/Core/Entity/EntityTypeListener.php(112): Drupal\Core\Entity\EntityTypeManager->createHandlerInstance(NULL, Object(Drupal\Core\Entity\ContentEntityType)) #1 /app/web/core/lib/Drupal/Core/Entity/EntityDefinitionUpdateManager.php(159): Drupal\Core\Entity\EntityTypeListener->onEntityTypeUpdate(Object(Drupal\Core\Entity\ContentEntityType), Object(Drupal\Core\Entity\ContentEntityType)) #2 /app/web/modules/contrib/group_content_menu/group_content_menu.install(24): Drupal\Core\Entity\EntityDefinitionUpdateManager->updateEntityType(Object(Drupal\Core\Entity\ContentEntityType)) #3 /app/vendor/drush/drush/src/Commands/core/PhpCommands.php(32) : eval()'d code(1): group_content_menu_update_9301() #4 /app/vendor/drush/drush/src/Commands/core/PhpCommands.php(32): eval() #5 [internal function]: Drush\Commands\core\PhpCommands->evaluate('module_load_inc...', Array) #6 /app/vendor/consolidation/annotated-command/src/CommandProcessor.php(276): call_user_func_array(Array, Array) #7 /app/vendor/consolidation/annotated-command/src/CommandProcessor.php(212): Consolidation\AnnotatedCommand\CommandProcessor->runCommandCallback(Array, Object(Consolidation\AnnotatedCommand\CommandData)) #8 /app/vendor/consolidation/annotated-command/src/CommandProcessor.php(176): Consolidation\AnnotatedCommand\CommandProcessor->validateRunAndAlter(Array, Array, Object(Consolidation\AnnotatedCommand\CommandData)) #9 /app/vendor/consolidation/annotated-command/src/AnnotatedCommand.php(391): Consolidation\AnnotatedCommand\CommandProcessor->process(Object(Symfony\Component\Console\Output\ConsoleOutput), Array, Array, Object(Consolidation\AnnotatedCommand\CommandData)) #10 /app/vendor/symfony/console/Command/Command.php(326): Consolidation\AnnotatedCommand\AnnotatedCommand->execute(Object(Symfony\Component\Console\Input\ArgvInput), Object(Symfony\Component\Console\Output\ConsoleOutput)) #11 /app/vendor/symfony/console/Application.php(1096): Symfony\Component\Console\Command\Command->run(Object(Symfony\Component\Console\Input\ArgvInput), Object(Symfony\Component\Console\Output\ConsoleOutput)) #12 /app/vendor/symfony/console/Application.php(324): Symfony\Component\Console\Application->doRunCommand(Object(Consolidation\AnnotatedCommand\AnnotatedCommand), Object(Symfony\Component\Console\Input\ArgvInput), Object(Symfony\Component\Console\Output\ConsoleOutput)) #13 /app/vendor/symfony/console/Application.php(175): Symfony\Component\Console\Application->doRun(Object(Symfony\Component\Console\Input\ArgvInput), Object(Symfony\Component\Console\Output\ConsoleOutput)) #14 /app/vendor/drush/drush/src/Runtime/Runtime.php(110): Symfony\Component\Console\Application->run(Object(Symfony\Component\Console\Input\ArgvInput), Object(Symfony\Component\Console\Output\ConsoleOutput)) #15 /app/vendor/drush/drush/src/Runtime/Runtime.php(40): Drush\Runtime\Runtime->doRun(Array, Object(Symfony\Component\Console\Output\ConsoleOutput)) #16 /app/vendor/drush/drush/drush.php(139): Drush\Runtime\Runtime->run(Array) #17 /app/vendor/drush/drush/drush(4): require('/app/vendor/dru...') #18 /app/vendor/bin/drush(119): include('/app/vendor/dru...') #19 {main} Error: Class name must be a valid object or a string in Drupal\Core\Entity\EntityTypeManager->createHandlerInstance() (line 283 of /app/web/core/lib/Drupal/Core/Entity/EntityTypeManager.php). [warning] Drush command terminated abnormally.
- 🇫🇮Finland Alexander Tallqvist
Did some more digging and noticed that
createHandlerInstance()
inEntityTypeManager.php
gets passed in a$class
variable with the value of"Drupal\group_content_menu\GroupContentMenuStorage"
, which doesn't seem to exist? If I call$entity_type->setStorageClass(SqlContentEntityStorage::class);
ingroup_content_menu_update_9301()
before$definition_update_manager->updateEntityType($entity_type);
gets called, then everything seems to work fine and the update goes through? - 🇨🇷Costa Rica rigoucr
Hello I also confirm the existance of this issue, today I was trying to update from a old dev version to 3.0.5 but I started to have the same issues alexander has reported :
For now , I'm staying at version 3.0.3 which works fine , but it would be nice if someone can help us to to fix it .
Drupal version: 10.3.10
groups version: 3.3.2
Issue starts to be trigger at version: 3.0.4 while running the database update . - 🇫🇮Finland Alexander Tallqvist
Hi again,
I'm still stuck in the same situation on rigoucr. Tried installing each release of the
group_content_menu
module an ranupdb
, but still no luck. Which I could stick to the3.0.3
version, but D11 support was introduced in3.0.4
:(- 3.0.5 - 20 November 2024
- 3.0.4 - 6 November 2024
- 3.0.3 - 4 July 2024
- 3.0.2 - 31 May 2024
- 3.0.1 - 30 October 2023
- 3.0.0 - 31 May 2023
- 3.0.x-dev - 2 December 2022
- 🇫🇮Finland Alexander Tallqvist
Created this patch for the missing
GroupContentMenuStorage
class that seems to be causing the issue. When I apply the patch, the update goes through just fine (and everything seems to be working normally). Can't really say why this is needed, but it seems to do the trick. - heddn Nicaragua
I did some more git research. That class was introduced in https://git.drupalcode.org/project/group_content_menu/-/commit/1fe9ade51... on the 8.x-1.x branch but not included in a tag. Later it was removed in https://git.drupalcode.org/project/group_content_menu/-/commit/89e2ce193... before 3.0.0 was released.
Can we test if a cache clear before running updates resolves the issue or not? Something is caching that the storage handler needs to exist. But I'm not sure the easiest way to introduce that cache clear.
- 🇫🇮Finland Alexander Tallqvist
I'll get back to work on the 7th of January. I can't swear that I've tried clearing the cache before running
updb
, but I'm 99.9% sure. I'll get back to you! - 🇫🇮Finland Alexander Tallqvist
Confirmed that a
drush cr
before running the database updates does not help with the issue. The old class seems to be "stuck" somewhere? Weird. - 🇧🇪Belgium matthijs
Noticing the same issue while updating from 3.0.1 to 3.0.5, the patch seems to fix it. It seems my project used 8.x-1.x-dev in the past, which explains why the class is known in the DB.