diff --git a/metadata-ingestion/src/datahub/ingestion/source/fivetran/fivetran.py b/metadata-ingestion/src/datahub/ingestion/source/fivetran/fivetran.py index 8865a4cdf2..003079ff12 100644 --- a/metadata-ingestion/src/datahub/ingestion/source/fivetran/fivetran.py +++ b/metadata-ingestion/src/datahub/ingestion/source/fivetran/fivetran.py @@ -577,7 +577,7 @@ class FivetranSource(StatefulIngestionSourceBase): ) # Create job name and description - job_name = f"Fivetran: {source_table} → {destination_table}" + job_name = f"{source_table} → {destination_table}" job_description = ( f"Fivetran data pipeline from {source_table} to {destination_table}" ) @@ -1294,7 +1294,7 @@ class FivetranSource(StatefulIngestionSourceBase): ) # Create job name and description - job_name = f"Fivetran: {source_table} → {destination_table}" + job_name = f"{source_table} → {destination_table}" job_description = ( f"Fivetran data pipeline from {source_table} to {destination_table}" )