Skip to content

Commit

Permalink
Merge pull request #35 from resulyrt93/feature/prioritized-env-vars
Browse files Browse the repository at this point in the history
- prioritize env vars on passing meltano op
  • Loading branch information
JulesHuisman authored Aug 10, 2023
2 parents bf013c9 + c3d1785 commit 7e3eb7f
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 7e3eb7f

Please sign in to comment.