Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Don't cache HTTP errors in the module map #10327

Open
wants to merge 4 commits into
base: main
Choose a base branch
from

Commits on May 7, 2024

  1. Don't cache HTTP errors in the import module cache

    Multiple parallel imports will still only fetch once, and if the fetch
    fails, will both error. A subsequent import (dynamic import, a
    dynamically inserted via `<script src="..." type="module">`, or a static
    import from either of these) to the same specifier will result in a
    re-fetch if the previous fetch failed.
    lucacasonato committed May 7, 2024
    Configuration menu
    Copy the full SHA
    728c268 View commit details
    Browse the repository at this point in the history
  2. address review comment

    lucacasonato committed May 7, 2024
    Configuration menu
    Copy the full SHA
    7e99d16 View commit details
    Browse the repository at this point in the history
  3. fix build

    lucacasonato committed May 7, 2024
    Configuration menu
    Copy the full SHA
    6176727 View commit details
    Browse the repository at this point in the history

Commits on Jun 3, 2024

  1. Configuration menu
    Copy the full SHA
    9eb3c1e View commit details
    Browse the repository at this point in the history