From 9eae6bffaeb6400c166b1a3143ceee68098299b6 Mon Sep 17 00:00:00 2001 From: Tudor Date: Thu, 26 Mar 2026 13:53:49 +0000 Subject: [PATCH] fix(meltano): use 'database' not 'dbname' for meltanolabs target-postgres 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 --- pipeline/meltano.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pipeline/meltano.yml b/pipeline/meltano.yml index 805e1d2..0b44fa0 100644 --- a/pipeline/meltano.yml +++ b/pipeline/meltano.yml @@ -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}