Skip to content

Commit

Permalink
Fix gooddata-dbt type check
Browse files Browse the repository at this point in the history
  • Loading branch information
hkad98 committed Oct 1, 2023
1 parent 83a02c4 commit b3210a0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gooddata-dbt/gooddata_dbt/dbt/cloud.py
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ def run_job(self, logger: logging.Logger, job_id: str) -> Tuple[str, str]:
# Allow testing from localhost where CI_COMMIT_SHA is not set
# TODO - Gitlab only! Allow override it from the outside in the future
if os.getenv("CI_COMMIT_SHA"):
commit_sha = os.getenv("CI_COMMIT_SHA")
commit_sha = os.environ["CI_COMMIT_SHA"]
data = {
"cause": f"Triggered via API by gooddata-dbt plugin - {commit_sha=}",
"git_sha": commit_sha,
Expand Down

0 comments on commit b3210a0

Please sign in to comment.