Update constructor when #3100732: Allow specifying metadata on JSON:API objects lands

Created on 2 June 2024, 12 months ago

Problem/Motivation

After upgrading from 3.24 to 3.25, when I try to run drush updatedb or drush cr, I get the following error:

 [error]  TypeError: Drupal\jsonapi_defaults\Controller\EntityResource::__construct(): Argument #12 ($jsonapi_defaults) must be of type Drupal\jsonapi_defaults\JsonapiDefaultsInterface, Drupal\Component\EventDispatcher\ContainerAwareEventDispatcher given in Drupal\jsonapi_defaults\Controller\EntityResource->__construct() (line 75 of /var/www/html/web/modules/contrib/jsonapi_extras/modules/jsonapi_defaults/src/Controller/EntityResource.php) #0 [internal function]: Drupal\jsonapi_defaults\Controller\EntityResource->__construct()

Reverting to 3.24 clears the error. By moving backwards one commit at a time in the git history, I traced the breakage to 🐛 Pages with default includes are not cached Fixed .

Drupal 10.2.6, PHP 8.3.

📌 Task
Status

Postponed

Version

3.0

Component

Code

Created by

🇯🇵Japan ptmkenny

Live updates comments and jobs are added and updated live.
Sign in to follow issues

Merge Requests

Comments & Activities

  • Pipeline finished with Skipped
    almost 2 years ago
    #12768
  • Issue created by @ptmkenny
  • 🇯🇵Japan ptmkenny

    Full stacktrace:

    Fatal error: Uncaught TypeError: Drupal\jsonapi_defaults\Controller\EntityResource::__construct(): Argument #12 ($jsonapi_defaults) must be of type Drupal\jsonapi_defaults\JsonapiDefaultsInterface, Drupal\Component\EventDispatcher\ContainerAwareEventDispatcher given, called in /var/www/html/web/core/lib/Drupal/Component/DependencyInjection/Container.php on line 259 and defined in /var/www/html/web/modules/jsonapi_extras/modules/jsonapi_defaults/src/Controller/EntityResource.php:75
    Stack trace:
    #0 /var/www/html/web/core/lib/Drupal/Component/DependencyInjection/Container.php(259): Drupal\jsonapi_defaults\Controller\EntityResource->__construct()
    #1 /var/www/html/web/core/lib/Drupal/Component/DependencyInjection/Container.php(177): Drupal\Component\DependencyInjection\Container->createService()
    #2 /var/www/html/web/core/lib/Drupal/Core/DependencyInjection/ClassResolver.php(20): Drupal\Component\DependencyInjection\Container->get()
    #3 /var/www/html/web/core/lib/Drupal/Core/Entity/EntityResolverManager.php(106): Drupal\Core\DependencyInjection\ClassResolver->getInstanceFromDefinition()
    #4 /var/www/html/web/core/lib/Drupal/Core/Entity/EntityResolverManager.php(219): Drupal\Core\Entity\EntityResolverManager->getControllerClass()
    #5 /var/www/html/web/core/lib/Drupal/Core/EventSubscriber/EntityRouteAlterSubscriber.php(48): Drupal\Core\Entity\EntityResolverManager->setRouteOptions()
    #6 [internal function]: Drupal\Core\EventSubscriber\EntityRouteAlterSubscriber->onRoutingRouteAlterSetType()
    #7 /var/www/html/web/core/lib/Drupal/Component/EventDispatcher/ContainerAwareEventDispatcher.php(111): call_user_func()
    #8 /var/www/html/web/core/lib/Drupal/Core/Routing/RouteBuilder.php(189): Drupal\Component\EventDispatcher\ContainerAwareEventDispatcher->dispatch()
    #9 /var/www/html/web/core/lib/Drupal/Core/ProxyClass/Routing/RouteBuilder.php(83): Drupal\Core\Routing\RouteBuilder->rebuild()
    #10 /var/www/html/web/core/includes/common.inc(485): Drupal\Core\ProxyClass\Routing\RouteBuilder->rebuild()
    #11 /var/www/html/web/core/includes/utility.inc(41): drupal_flush_all_caches()
    #12 /var/www/html/vendor/drush/drush/src/Commands/core/CacheRebuildCommands.php(70): drupal_rebuild()
    #13 [internal function]: Drush\Commands\core\CacheRebuildCommands->rebuild()
    #14 /var/www/html/vendor/consolidation/annotated-command/src/CommandProcessor.php(276): call_user_func_array()
    #15 /var/www/html/vendor/consolidation/annotated-command/src/CommandProcessor.php(212): Consolidation\AnnotatedCommand\CommandProcessor->runCommandCallback()
    #16 /var/www/html/vendor/consolidation/annotated-command/src/CommandProcessor.php(175): Consolidation\AnnotatedCommand\CommandProcessor->validateRunAndAlter()
    #17 /var/www/html/vendor/consolidation/annotated-command/src/AnnotatedCommand.php(387): Consolidation\AnnotatedCommand\CommandProcessor->process()
    #18 /var/www/html/vendor/symfony/console/Command/Command.php(326): Consolidation\AnnotatedCommand\AnnotatedCommand->execute()
    #19 /var/www/html/vendor/symfony/console/Application.php(1096): Symfony\Component\Console\Command\Command->run()
    #20 /var/www/html/vendor/symfony/console/Application.php(324): Symfony\Component\Console\Application->doRunCommand()
    #21 /var/www/html/vendor/symfony/console/Application.php(175): Symfony\Component\Console\Application->doRun()
    #22 /var/www/html/vendor/drush/drush/src/Runtime/Runtime.php(110): Symfony\Component\Console\Application->run()
    #23 /var/www/html/vendor/drush/drush/src/Runtime/Runtime.php(40): Drush\Runtime\Runtime->doRun()
    #24 /var/www/html/vendor/drush/drush/drush.php(139): Drush\Runtime\Runtime->run()
    #25 /var/www/html/vendor/drush/drush/drush(4): require('...')
    #26 /var/www/html/vendor/bin/drush(119): include('...')
    #27 {main}
      thrown in /var/www/html/web/modules/jsonapi_extras/modules/jsonapi_defaults/src/Controller/EntityResource.php on line 75
     [warning] Drush command terminated abnormally.
    
  • Merge request !51inject event_dispatcher → (Open) created by ptmkenny
  • Open in Jenkins → Open on Drupal.org →
    Core: 10.2.1 + Environment: PHP 8.1 & MySQL 5.7
    last update 12 months ago
    17 pass, 2 fail
  • Status changed to Needs review 12 months ago
  • 🇯🇵Japan ptmkenny

    The eventDispatcher never got injected, but it is provided by core, so then in construct() all the arguments get out of order, breaking the site. This MR injects the eventDispatcher so that the parent constructor can be called properly.

  • Pipeline finished with Failed
    12 months ago
    #189168
  • Open in Jenkins → Open on Drupal.org →
    Core: 10.2.1 + Environment: PHP 8.1 & MySQL 5.7
    11:02
    9:17
    Running
  • Open in Jenkins → Open on Drupal.org →
    Core: 10.2.1 + Environment: PHP 8.1 & MySQL 5.7
    7:14
    5:18
    Running
  • Pipeline finished with Canceled
    12 months ago
    Total: 205s
    #189183
  • Status changed to Postponed 12 months ago
  • 🇯🇵Japan ptmkenny

    So this issue was caused by me having applied the MR in Allow specifying `meta` data on JSON:API objects Needs work . When this issue eventually gets committed to core, the code will need to be updated, so I'm marking postponed for now. But feel free to close if you would rather handle this once the commit actually happens.

  • Pipeline finished with Failed
    12 months ago
    Total: 249s
    #189190
  • Pipeline finished with Failed
    12 months ago
    Total: 178s
    #193415
  • Pipeline finished with Canceled
    11 months ago
    Total: 147s
    #197542
  • Pipeline finished with Failed
    11 months ago
    #197552
  • Pipeline finished with Failed
    11 months ago
    Total: 388s
    #197583
  • Pipeline finished with Success
    11 months ago
    Total: 302s
    #197599
  • Pipeline finished with Failed
    11 months ago
    Total: 296s
    #199193
  • Pipeline finished with Skipped
    11 months ago
    #199257
  • Pipeline finished with Success
    11 months ago
    Total: 151s
    #200133
  • Pipeline finished with Failed
    11 months ago
    Total: 40s
    #200706
  • Pipeline finished with Manual
    11 months ago
    #199399
  • Pipeline finished with Failed
    11 months ago
    Total: 273s
    #204847
  • Pipeline finished with Failed
    11 months ago
    Total: 283s
    #204969
  • Pipeline finished with Success
    11 months ago
    Total: 281s
    #204976
  • Pipeline finished with Success
    11 months ago
    Total: 266s
    #204990
  • Pipeline finished with Failed
    11 months ago
    Total: 195s
    #205012
  • Pipeline finished with Success
    11 months ago
    Total: 281s
    #205054
  • Pipeline finished with Success
    11 months ago
    Total: 370s
    #205061
  • Pipeline finished with Success
    11 months ago
    Total: 277s
    #205098
  • Pipeline finished with Success
    11 months ago
    Total: 279s
    #205409
  • Pipeline finished with Failed
    11 months ago
    Total: 283s
    #205429
  • Pipeline finished with Failed
    11 months ago
    Total: 277s
    #205536
  • Pipeline finished with Success
    11 months ago
    Total: 274s
    #205551
  • Pipeline finished with Success
    11 months ago
    Total: 309s
    #205626
  • Pipeline finished with Success
    11 months ago
    Total: 296s
    #205631
  • Pipeline finished with Success
    11 months ago
    Total: 201s
    #212751
  • Pipeline finished with Failed
    11 months ago
    Total: 284s
    #215981
  • Pipeline finished with Failed
    10 months ago
    Total: 455s
    #220107
  • Pipeline finished with Canceled
    10 months ago
    Total: 398s
    #235564
  • Pipeline finished with Success
    10 months ago
    Total: 417s
    #235565
  • Pipeline finished with Success
    10 months ago
    Total: 80s
    #240837
  • Pipeline finished with Success
    10 months ago
    Total: 81s
    #240841
  • Pipeline finished with Success
    9 months ago
    Total: 180s
    #249436
  • Pipeline finished with Success
    9 months ago
    #255671
  • Pipeline finished with Skipped
    9 months ago
    #256070
  • Pipeline finished with Failed
    9 months ago
    Total: 1689s
    #261717
  • Pipeline finished with Failed
    9 months ago
    #262033
  • Pipeline finished with Failed
    9 months ago
    Total: 151s
    #263466
  • Pipeline finished with Canceled
    9 months ago
    Total: 74s
    #270429
  • Pipeline finished with Failed
    9 months ago
    Total: 315s
    #270430
  • Pipeline finished with Success
    9 months ago
    #270438
  • Pipeline finished with Success
    9 months ago
    Total: 309s
    #270447
  • Pipeline finished with Success
    9 months ago
    Total: 315s
    #270448
  • Pipeline finished with Success
    9 months ago
    Total: 164s
    #272600
  • Pipeline finished with Canceled
    9 months ago
    Total: 162s
    #272615
  • Pipeline finished with Success
    9 months ago
    Total: 161s
    #272627
  • Pipeline finished with Failed
    9 months ago
    Total: 765s
    #272675
  • Pipeline finished with Failed
    9 months ago
    Total: 176s
    #272749
  • Pipeline finished with Success
    9 months ago
    Total: 177s
    #273465
  • Pipeline finished with Failed
    9 months ago
    Total: 1171s
    #273476
  • Pipeline finished with Failed
    8 months ago
    Total: 295s
    #276576
  • Pipeline finished with Failed
    8 months ago
    Total: 245s
    #285011
  • Pipeline finished with Failed
    8 months ago
    Total: 246s
    #286851
  • Pipeline finished with Failed
    8 months ago
    Total: 178s
    #289065
  • Pipeline finished with Failed
    8 months ago
    Total: 1413s
    #291622
  • Pipeline finished with Failed
    8 months ago
    Total: 492s
    #294134
  • Pipeline finished with Failed
    8 months ago
    Total: 163s
    #294193
  • Pipeline finished with Failed
    8 months ago
    Total: 178s
    #294635
  • Pipeline finished with Success
    8 months ago
    Total: 160s
    #294676
  • Pipeline finished with Success
    8 months ago
    Total: 358s
    #299155
  • Pipeline finished with Success
    7 months ago
    Total: 187s
    #303684
  • Pipeline finished with Failed
    7 months ago
    Total: 316s
    #320023
  • Pipeline finished with Failed
    7 months ago
    Total: 210s
    #321136
  • Pipeline finished with Failed
    7 months ago
    Total: 176s
    #321144
  • Pipeline finished with Failed
    7 months ago
    Total: 180s
    #321149
  • Pipeline finished with Success
    6 months ago
    Total: 164s
    #337697
  • Pipeline finished with Success
    6 months ago
    Total: 142s
    #346232
  • Pipeline finished with Canceled
    6 months ago
    Total: 103s
    #350156
  • Pipeline finished with Canceled
    6 months ago
    Total: 112s
    #350161
  • Pipeline finished with Failed
    6 months ago
    Total: 2091s
    #350163
  • Pipeline finished with Success
    6 months ago
    Total: 372s
    #355738
  • Pipeline finished with Canceled
    5 months ago
    Total: 120s
    #360340
  • Pipeline finished with Success
    5 months ago
    Total: 178s
    #360656
  • Pipeline finished with Success
    5 months ago
    Total: 239s
    #364496
  • Pipeline finished with Failed
    5 months ago
    Total: 224s
    #367103
  • Pipeline finished with Success
    5 months ago
    Total: 241s
    #367621
  • Pipeline finished with Success
    5 months ago
    Total: 222s
    #367705
  • Pipeline finished with Success
    5 months ago
    Total: 235s
    #369090
  • Pipeline finished with Success
    5 months ago
    Total: 148s
    #373932
  • Pipeline finished with Success
    5 months ago
    Total: 145s
    #374054
  • Pipeline finished with Success
    5 months ago
    Total: 195s
    #379032
  • Pipeline finished with Success
    5 months ago
    Total: 165s
    #380643
  • Pipeline finished with Success
    5 months ago
    Total: 167s
    #380650
  • Pipeline finished with Canceled
    4 months ago
    Total: 146s
    #401633
  • Pipeline finished with Success
    4 months ago
    Total: 193s
    #401638
  • Pipeline finished with Success
    3 months ago
    Total: 551s
    #428640
  • Pipeline finished with Canceled
    3 months ago
    Total: 55s
    #429049
  • Pipeline finished with Success
    3 months ago
    Total: 195s
    #429228
  • Pipeline finished with Success
    3 months ago
    Total: 315s
    #429285
  • Pipeline finished with Success
    3 months ago
    Total: 204s
    #432122
  • Pipeline finished with Success
    2 months ago
    Total: 194s
    #444678
  • Pipeline finished with Success
    2 months ago
    Total: 279s
    #444710
  • Pipeline finished with Success
    2 months ago
    Total: 274s
    #445499
  • Pipeline finished with Success
    2 months ago
    Total: 314s
    #450259
  • Pipeline finished with Success
    about 2 months ago
    Total: 553s
    #452499
  • Pipeline finished with Success
    about 1 month ago
    Total: 227s
    #470278
  • Pipeline finished with Failed
    19 days ago
    Total: 169s
    #485009
  • Pipeline finished with Canceled
    19 days ago
    Total: 200s
    #485025
  • Pipeline finished with Success
    19 days ago
    Total: 223s
    #485026
  • Pipeline finished with Success
    19 days ago
    Total: 151s
    #485051
  • Pipeline finished with Success
    18 days ago
    #485223
Production build 0.71.5 2024