Skip to content

Commit

Permalink
- prioritize env vars on passing meltano op
Browse files Browse the repository at this point in the history
  • Loading branch information
resulyrt93 committed Aug 9, 2023
1 parent bf013c9 commit c3d1785
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dagster_meltano/meltano_resource.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,10 +36,10 @@ def default_env(self) -> Dict[str, str]:
Dict[str, str]: The environment variables.
"""
return {
**os.environ.copy(),
"MELTANO_CLI_LOG_CONFIG": str(Path(__file__).parent / "logging.yaml"),
"DBT_USE_COLORS": "false",
"NO_COLOR": "1",
**os.environ.copy(),
}

def execute_command(
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "dagster-meltano"
version = "1.3.0"
version = "1.3.1"
description = "A dagster plugin that allows you to run your Meltano project inside Dagster."
authors = ["Jules Huisman"]
license = "Apache 2.0"
Expand Down

0 comments on commit c3d1785

Please sign in to comment.