fix(meltano): use 'database' not 'dbname' for meltanolabs target-postgres
All checks were successful
Build and Push Docker Images / Build Backend (FastAPI) (push) Successful in 35s
Build and Push Docker Images / Build Frontend (Next.js) (push) Successful in 1m6s
Build and Push Docker Images / Build Integrator (push) Successful in 56s
Build and Push Docker Images / Build Kestra Init (push) Successful in 31s
Build and Push Docker Images / Build Pipeline (Meltano + dbt + Airflow) (push) Successful in 1m35s
Build and Push Docker Images / Trigger Portainer Update (push) Successful in 0s

The meltanolabs target-postgres variant expects 'database' as the
config key, not 'dbname' (which was the pipelinewise variant's key).

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-03-26 13:53:49 +00:00
parent c576bba06a
commit 9eae6bffae

View File

@@ -61,7 +61,7 @@ plugins:
port: $PG_PORT
user: $PG_USER
password: $PG_PASSWORD
dbname: $PG_DATABASE
database: $PG_DATABASE
default_target_schema: raw
utilities:
@@ -83,7 +83,7 @@ environments:
port: 5432
user: postgres
password: postgres
dbname: school_compare
database: school_compare
- name: production
config:
plugins:
@@ -94,4 +94,4 @@ environments:
port: ${PG_PORT}
user: ${PG_USER}
password: ${PG_PASSWORD}
dbname: ${PG_DATABASE}
database: ${PG_DATABASE}