Website error Exception: "Only file CSS assets can be optimized"

Created on 11 January 2024, about 1 year ago

Problem/Motivation

Similar to the cloned parent #3191028: Website error Exception: Only file CSS assets can be optimized โ†’ but with a twist...

Since upgrading to 10.2 we've been seeing these in the logs (maybe because we moved away from advagg โ†’ to core's aggregation)

We are seeing cached pages calling aggregated assets from the past! That triggers errors in the log as such:

Exception: Only file CSS assets can be optimized. in Drupal\Core\Asset\CssOptimizer->optimize() (line 43 of core/lib/Drupal/Core/Asset/CssOptimizer.php).

The problem was that we *HAD* some assets that were type: external AND minified: true

I fixed the problem by removing minified: true. But here's the twist: because these cached pages return cached aggregate assets that have includes the library that still exists, they assume they should still be minified because they are in the URL.

Steps to reproduce

I took the failing asset path locally (don't need the file to be there for test, it's the include= that causes the issue)
sites/default/files/css/css_LYCBGljzz7g174tLEdAJcO7-JDTovJeWZpQ-gEqd6Nk.css?delta=1&include=eJx1T4sOgzAI_KHWfpLByrBKHyvtnPv61cy4R7KEBO7gOLAxo5mvFfOmBrBLX2KLZD7qfpa_LWdjULJJQd94QUXAYEsV41EECEXZ3SHE7IHd42OAOA7AyvLlKLWUjV0ghffS8mLGXBNwd0BFMRJjX4AMFf8NgV4-hyTlSLkd8DvUwQz39wl2DLr56_bgm2t45y-rHlaVIANlSJOcq0-mqyHVgZ1MOH7r18mVgJse8fYEEqeHrA&language=en&theme=clf

Set a breakpoint here
public/core/lib/Drupal/Core/Asset/CssOptimizer.php:43

And this asset which exists still, but is not meant to be minified anymore is causing the exception to be thrown.

$css_asset = {array[8]} 
 type = "external"
 weight = {float} -199.999
 group = {int} 100
 data = "https://cdn.ubc.ca/clf/7.0.4/css/ubc-clf-full-bw.min.css"
 version = "7.0.4"
 media = "all"
 preprocess = true
 license = {array[3]} 

This is the library as it is now in galactus.libraries.yml:

clf-cdn-fw-bw:
  version: 7.0.4
  css:
    base:
      https://cdn.ubc.ca/clf/7.0.4/css/ubc-clf-full-bw.min.css: { type: external }
  dependencies:
    - galactus/cdn-clf-js

Proposed resolution

Consider silently aborting the library include if it's external and not minified (anymore)

Remaining tasks

User interface changes

API changes

Data model changes

Release notes snippet

๐Ÿ› Bug report
Status

Active

Version

10.2 โœจ

Component
Asset libraryย  โ†’

Last updated 5 days ago

No maintainer
Created by

๐Ÿ‡จ๐Ÿ‡ฆCanada joelpittet Vancouver

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

Merge Requests

Comments & Activities

  • Issue created by @joelpittet
  • Status changed to Needs review about 1 year ago
  • ๐Ÿ‡จ๐Ÿ‡ฆCanada joelpittet Vancouver

    Here's a patch to workaround this issue.

  • ๐Ÿ‡จ๐Ÿ‡ฆCanada joelpittet Vancouver

    Ideally it would be nicer to consider the include invalid cache and rebuild the asset or something...

  • Status changed to Needs work about 1 year ago
  • The Needs Review Queue Bot โ†’ tested this issue.

    While you are making the above changes, we recommend that you convert this patch to a merge request โ†’ . Merge requests are preferred over patches. Be sure to hide the old patch files as well. (Converting an issue to a merge request without other contributions to the issue will not receive credit.)

  • ๐Ÿ‡จ๐Ÿ‡ฆCanada joelpittet Vancouver

    @djsagar Why move it to 11.x-dev it's a bug, did the policy change or doesn't it get applied to the latest release's branch? I maybe missed a memo

  • Status changed to Needs review about 1 year ago
  • Pipeline finished with Failed
    about 1 year ago
    Total: 651s
    #80077
  • Status changed to Needs work about 1 year ago
  • ๐Ÿ‡บ๐Ÿ‡ธUnited States smustgrave

    Thanks for reporting. Will need a test case showing the problem.

  • ๐Ÿ‡จ๐Ÿ‡ฆCanada joelpittet Vancouver

    @smustgrave any hints at where tests of this nature should go or could extend?

    Test Scenario:

    • External Library + minified included in the URL = Fail as expected
    • External Library + without minified included in the URL = Skipped
  • ๐Ÿ‡บ๐Ÿ‡ธUnited States smustgrave

    Maybe in Drupal\FunctionalTests\Asset;

    Also doesn't have to be it's own test, could be an additional assertion somewhere.

  • ๐Ÿ‡บ๐Ÿ‡ธUnited States firewaller

    Does it make sense to relocate this change to `\Drupal\Core\Asset\CssCollectionOptimizerLazy::optimizeGroup` similar to the JS approach? https://git.drupalcode.org/project/drupal/-/blob/11.x/core/lib/Drupal/Co...

  • I am reporting a similar (as it seems) issue when I visit the Resend page of a webform.

    It occurs with Claro and Gin themes. When I try with eg. the Bootstrap admin theme, the issue is not present.

    These are the errors I get:

    1. Only file JavaScript assets can be optimized. in Drupal\Core\Asset\JsOptimizer->optimize() (line 31 of /var/www/html/docroot/core/lib/Drupal/Core/Asset/JsOptimizer.php).

    2. Symfony\Component\HttpKernel\Exception\BadRequestHttpException: Invalid filename. in Drupal\system\Controller\AssetControllerBase->getGroup() (line 224 of /var/www/html/docroot/core/modules/system/src/Controller/AssetControllerBase.php).

  • ๐Ÿ‡บ๐Ÿ‡ธUnited States jlancaster

    Error logs on a few of my sites were getting filled with warnings and I could not find culprit in backtrace. Applying this patch to core (#23) has resulted in clean logs, finally!

  • Pipeline finished with Failed
    5 months ago
    Total: 570s
    #318817
  • Pipeline finished with Failed
    4 months ago
    Total: 681s
    #351295
  • First commit to issue fork.
  • Pipeline finished with Failed
    4 months ago
    Total: 471s
    #374742
  • ๐Ÿ‡ช๐Ÿ‡ธSpain ssantaeugenia

    Thanks for this great patch. I've attached the modified patch to also affect JavaScript.

  • Pipeline finished with Failed
    16 days ago
    Total: 110s
    #454360
  • ๐Ÿ‡ฉ๐Ÿ‡ชGermany osopolar ๐Ÿ‡ฉ๐Ÿ‡ช GER ๐ŸŒ

    I have the same errors in the log and now I am wondering how to fix it.

    @joelpittet You mentioned that you had assets that were type: external AND minified: true and so you removed the minimized there. We have one such asset, the better_exposed_filters โ†’ library. But I am wondering why minified: true shouldn't be set for external libraries. There is a example of both attributes set in documentation โ†’ under minified, with the description

    Whether the asset is already minified. Default: false

    The asset in your example (https://cdn.ubc.ca/clf/7.0.4/css/ubc-clf-full-bw.min.css) seems to be already minified, so why not setting minified: true?

  • ๐Ÿ‡จ๐Ÿ‡ฆCanada joelpittet Vancouver

    @osopolar thatโ€™s a really good point โ€” I should know better than to make assumptions about how this works. I was under the impression minified was an action to be taken rather than a descriptor. But youโ€™re right, the docs clearly state otherwise. Looks like Iโ€™ve been shooting myself in the foot here! Thanks so much for pointing it out.

    That said, I still think the page-cached asset URLs are a problem, regardless of my incorrect understanding. Iโ€™ll try to update the issue summary to reflect that.

  • ๐Ÿ‡ฌ๐Ÿ‡งUnited Kingdom catch

    Yes minified describes the library, not what to do with it.

Production build 0.71.5 2024