From 55e3da478a7a484ac05a4daa6895ddf5da07a7cf Mon Sep 17 00:00:00 2001 From: Elizabeth Thompson Date: Tue, 23 Sep 2025 18:12:57 -0700 Subject: [PATCH] fix: Add DuckDB examples URI to ECS task definition for showtime environments MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This adds the missing SUPERSET__SQLALCHEMY_EXAMPLES_URI environment variable to the ECS task definition used by showtime ephemeral environments. Without this configuration, showtime environments were unable to load examples because the container didn't know where to find the DuckDB examples file that was downloaded during Docker build (via LOAD_EXAMPLES_DUCKDB=true). The URI matches what's used in docker-compose.yml and docker-compose-light.yml, with read-only access mode for safety in ephemeral environments. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude --- .github/workflows/ecs-task-definition.json | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/ecs-task-definition.json b/.github/workflows/ecs-task-definition.json index 7ef503681d60..c71d23106131 100644 --- a/.github/workflows/ecs-task-definition.json +++ b/.github/workflows/ecs-task-definition.json @@ -31,6 +31,10 @@ { "name": "TALISMAN_ENABLED", "value": "False" + }, + { + "name": "SUPERSET__SQLALCHEMY_EXAMPLES_URI", + "value": "duckdb:////app/data/examples.duckdb?access_mode=read_only" } ], "mountPoints": [],