Environment
- Image:
unleashorg/unleash-server:8.0.3
- Deployment: Self-hosted, ECS Fargate
- Database: Aurora PostgreSQL
Behaviour
After pulling the latest / 8.0.3 image, the /projects/default page fails to load and displays an error message about a frontend module failing to load. All other pages appear unaffected.
Browser console errors
GET https://<host>/static/SdkEvaluationStatus-B1rMywp-.js net::ERR_ABORTED 404 (Not Found)
TypeError: Failed to fetch dynamically imported module: https://<host>/static/LazyProjectExport-30GlUH0L.js
Root cause
LazyProjectExport-30GlUH0L.js loads successfully (HTTP 200) but dynamically imports SdkEvaluationStatus-B1rMywp-.js, which returns 404 from the server. The chunk is present in the main bundle's import graph but missing from the Docker image's static assets.
Workaround
Pinning to unleashorg/unleash-server:8.0.2 resolves the issue — the Projects page loads correctly on that image.
Steps to reproduce
- Run
unleashorg/unleash-server:8.0.3
- Navigate to
/projects/default
- Observe the error page and the 404 for
SdkEvaluationStatus-B1rMywp-.js in the browser network tab
Expected behaviour
The Projects page loads correctly, as it did on 8.0.2.
Environment
unleashorg/unleash-server:8.0.3Behaviour
After pulling the
latest/8.0.3image, the/projects/defaultpage fails to load and displays an error message about a frontend module failing to load. All other pages appear unaffected.Browser console errors
Root cause
LazyProjectExport-30GlUH0L.jsloads successfully (HTTP 200) but dynamically importsSdkEvaluationStatus-B1rMywp-.js, which returns 404 from the server. The chunk is present in the main bundle's import graph but missing from the Docker image's static assets.Workaround
Pinning to
unleashorg/unleash-server:8.0.2resolves the issue — the Projects page loads correctly on that image.Steps to reproduce
unleashorg/unleash-server:8.0.3/projects/defaultSdkEvaluationStatus-B1rMywp-.jsin the browser network tabExpected behaviour
The Projects page loads correctly, as it did on
8.0.2.