Skip to content

Commit

Permalink
Update utils.py - replace "=" with "_" since dagster does not support…
Browse files Browse the repository at this point in the history
… "=" sign in name (#47)

equal sign might show of if you try to change the dagster job to env=prod
  • Loading branch information
ReneTC authored Oct 16, 2023
1 parent 1b3022c commit f7a981a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dagster_meltano/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ def generate_dagster_name(input_string) -> str:
"""
Generate a dagster safe name (^[A-Za-z0-9_]+$.)
"""
return input_string.replace("-", "_").replace(" ", "_").replace(":", "_")
return input_string.replace("-", "_").replace(" ", "_").replace(":", "_").replace("=", "_")


def generate_dbt_group_name(node_info: dict) -> str:
Expand Down

0 comments on commit f7a981a

Please sign in to comment.