diff --git a/docker/snippets/ingestion/build_bundled_venvs_unified.py b/docker/snippets/ingestion/build_bundled_venvs_unified.py index ab0b7d5d0c303..d6075185da112 100644 --- a/docker/snippets/ingestion/build_bundled_venvs_unified.py +++ b/docker/snippets/ingestion/build_bundled_venvs_unified.py @@ -2,7 +2,7 @@ """ Self-contained script to create bundled venvs for DataHub ingestion sources. This script creates virtual environments with predictable names following the pattern: --default that are leveraged within acryl-executor to run ingestion jobs. +-bundled that are leveraged within acryl-executor to run ingestion jobs. """ import os @@ -12,12 +12,12 @@ def generate_venv_mappings(plugins: List[str]) -> List[Tuple[str, str]]: - """Generate simple venv name mappings using -default pattern.""" + """Generate simple venv name mappings using -bundled pattern.""" venv_mappings = [] for plugin in plugins: - # Simple, predictable naming: -default - venv_name = f"{plugin}-default" + # Simple, predictable naming: -bundled + venv_name = f"{plugin}-bundled" venv_mappings.append((plugin, venv_name)) return venv_mappings diff --git a/docker/snippets/ingestion/build_bundled_venvs_unified.sh b/docker/snippets/ingestion/build_bundled_venvs_unified.sh index 8225988e764ea..26057a3de3450 100644 --- a/docker/snippets/ingestion/build_bundled_venvs_unified.sh +++ b/docker/snippets/ingestion/build_bundled_venvs_unified.sh @@ -1,6 +1,6 @@ #!/bin/bash # Self-contained script to build bundled venvs for DataHub ingestion sources -# This script creates venvs with predictable names: -default +# This script creates venvs with predictable names: -bundled # which are then leveraged within acryl-executor to run ingestion jobs. set -euo pipefail