Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ravenac95 committed Apr 18, 2024
1 parent 5d0ad07 commit 27b4bca
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/meltano/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,10 @@ runs:
shell: bash
# This is for testing for now
run: |
env && cd ${{ inputs.meltano_path }} && poetry run meltano run ${{ inputs.tap}} ${{ inputs.target }}
env &&
cd ${{ inputs.meltano_path }} &&
poetry run meltano config ${{ inputs.tap }} set no_tmp_dir_clean 1 &&
poetry run meltano run ${{ inputs.tap }} ${{ inputs.target }}
env:
MELTANO_DATABASE_URI: postgresql+psycopg://${{ inputs.db_user }}:${{ inputs.db_password }}@127.0.0.1:5432/${{ inputs.db_name }}
MELTANO_STATE_BACKEND_URI: ${{ inputs.meltano_state_backend_uri }}
Expand Down
4 changes: 2 additions & 2 deletions warehouse/meltano-setup/meltano.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ plugins:
pip_url: git+https://github.com/opensource-observer/tap-airbyte-wrapper.git
config:
nullable_generated_fields:
- "*._ab_cdc_deleted_at"
- '*._ab_cdc_deleted_at'
airbyte_spec:
image: airbyte/source-postgres
tag: 3.3.26
Expand Down Expand Up @@ -43,7 +43,7 @@ plugins:
pip_url: git+https://github.com/opensource-observer/tap-airbyte-wrapper.git
config:
nullable_generated_fields:
- "*._ab_cdc_deleted_at"
- '*._ab_cdc_deleted_at'
airbyte_spec:
image: airbyte/source-postgres
tag: 3.3.26
Expand Down

0 comments on commit 27b4bca

Please sign in to comment.