Fatal error "Stream must be a resource"

Created on 15 July 2024, 9 months ago

Problem/Motivation

When I update to the latest version, many pages in my site no longer load, and my logs are filled with the following error:

Exception caught: 0 "Stream must be a resource". In /home/vcap/app/vendor/guzzlehttp/psr7/src/Stream.php at line 53

Unfortunately I cannot give a backtrace since the module's custom error handling removes the backtrace from exceptions so this crucial information is sadly missing.

When I downgrade to version 3.0.6 everything works again. Version 3.0.7 is not installable since it was apparently accidentally created against the 2.x branch.

On a side note, no issue has been created for the change that was released in 3.0.8. This makes it difficult to investigate what happened. We have only a commit message but this gives little context. It is a good practice to have an issue to back up each change so the users of the module can get insights in the changes that are made and can see that is has been properly peer reviewed and tested by the community before making it into a release.

Steps to reproduce

Update to version 3.0.8.

🐛 Bug report
Status

Needs review

Version

3.0

Component

Code

Created by

🇧🇬Bulgaria pfrenssen Sofia

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

Merge Requests

Comments & Activities

  • Issue created by @pfrenssen
  • 🇧🇬Bulgaria pfrenssen Sofia

    This is the commit that introduced the error: https://git.drupalcode.org/project/rokka/-/commit/5387a5ff229eb96f5aff8d...

    It looks like this code went missing which is responsible for injecting the RokkaToolkit into the ImageFactory.

      /**
       * {@inheritdoc}
       */
      public function get($source = NULL, $toolkit_id = NULL) {
        return new Image($this->toolkitManager->createInstance('rokka'), $source);
      }
    
  • 🇧🇬Bulgaria pfrenssen Sofia

    I think the problem in my affected project was that the GD toolkit is set up as the default. This should have been set to Rokka instead, but since in previous versions the Rokka toolkit was forced as the default by overriding the ImageFactory it was now unexpectedly switching back to GD when processing images intended for Rokka.

    Maybe we can provide an update hook to set the default toolkit to Rokka for users who are upgrading from an older version? I am not sure if we should set it as the default on new installations though. The user should be free to use GD / ImageMagick / Rokka for different images depending on their use case.

  • Status changed to Needs review 9 months ago
  • 🇧🇬Bulgaria pfrenssen Sofia

    With the patch and switching the default toolkit to Rokka the fatal error is gone in my project. Setting to Needs Review.

Production build 0.71.5 2024