Skip to content

feat(ingestion/airbyte): Airbyte Connector #13217

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Draft
wants to merge 8 commits into
base: master
Choose a base branch
from

Conversation

acrylJonny
Copy link
Collaborator

Checklist

  • The PR conforms to DataHub's Contributing Guideline (particularly Commit Message Format)
  • Links to related issues (if applicable)
  • Tests for the changes have been added/updated (if applicable)
  • Docs related to the changes have been added/updated (if applicable). If a new feature has been added a Usage Guide has been added for the same.
  • For any breaking change/potential downtime/deprecation/big changes an entry has been made in Updating DataHub

@github-actions github-actions bot added ingestion PR or Issue related to the ingestion of metadata product PR or Issue related to the DataHub UI/UX devops PR or Issue related to DataHub backend & deployment labels Apr 15, 2025
Copy link

codecov bot commented Apr 15, 2025

❌ 8 Tests Failed:

Tests completed Failed Passed Skipped
4856 8 4848 73
View the top 3 failed test(s) by shortest run time
tests.integration.airbyte.test_airbyte::test_airbyte_connection
Stack Traces | 0.001s run time
docker_compose_runner = <function docker_compose_runner.<locals>.run at 0x7f0b81265d70>
pytestconfig = <_pytest.config.Config object at 0x7f0bc90d0b90>
test_resources_dir = PosixPath('.../tests/integration/airbyte')
set_docker_env_vars = None

    @pytest.fixture(scope="module")
    def airbyte_service(
        docker_compose_runner: Any,
        pytestconfig: Any,
        test_resources_dir: Path,
        set_docker_env_vars: None,
    ) -> Generator[Any, None, None]:
        """Start Airbyte and test databases using Docker Compose with better diagnostics"""
        print("\n\nStarting Docker Compose services for Airbyte...\n")
    
        # Set the default API URL - this may be updated later
        global AIRBYTE_API_URL
        api_url = f"http://{AIRBYTE_API_HOST}:{AIRBYTE_API_PORT}/api/v1"
        AIRBYTE_API_URL = api_url
    
        # If containers are already running, we should stop them first
        try:
            print("Stopping any existing containers...")
            subprocess.run(
                f"docker-compose -f {test_resources_dir}/docker-compose.yml down -v",
                shell=True,
                check=False,
                timeout=60,
            )
            time.sleep(5)  # Give some time for cleanup
        except Exception as e:
            print(f"Error during cleanup: {str(e)}")
    
        with docker_compose_runner(
            test_resources_dir / "docker-compose.yml", "airbyte"
        ) as docker_services:
            try:
                # Wait for PostgreSQL test database with longer timeout
                print("Waiting for test-postgres...")
                wait_for_port(
                    docker_services,
                    "test-postgres",
                    POSTGRES_PORT,
                    timeout=120,
                    checker=lambda: is_postgres_ready("test-postgres"),
                )
                print("test-postgres is ready")
    
                # Wait for MySQL test database with longer timeout
                print("Waiting for test-mysql...")
                wait_for_port(
                    docker_services,
                    "test-mysql",
                    MYSQL_PORT,
                    timeout=120,
                    checker=lambda: is_mysql_ready("test-mysql"),
                )
                print("test-mysql is ready")
    
                # Wait for Airbyte server to be available - try both ports
                print("Checking if airbyte-server port is open...")
                try:
                    wait_for_port(
                        docker_services,
                        "airbyte-server",
                        8001,
                        timeout=30,
                    )
                    print("airbyte-server port 8001 is open")
                except Exception:
                    print("airbyte-server port 8001 check failed, trying proxy...")
                    try:
                        wait_for_port(
                            docker_services,
                            "airbyte-proxy",
                            8001,
                            timeout=30,
                        )
                        print("airbyte-proxy port 8001 is open")
                    except Exception:
                        print("WARNING: Both server and proxy port 8001 checks failed")
    
                # Wait for Airbyte web UI to be available
                try:
                    wait_for_port(
                        docker_services,
                        "airbyte-proxy",
                        8000,
                        timeout=30,
                    )
                    print("airbyte-proxy port 8000 is open")
                except Exception:
                    print("WARNING: Proxy port 8000 check failed")
    
                # Wait for Airbyte API to be ready with more comprehensive checks
>               wait_for_airbyte_ready(timeout=600)

.../integration/airbyte/test_airbyte.py:620: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

timeout = 600

    def wait_for_airbyte_ready(timeout: int = 600) -> bool:
        """Wait for Airbyte API to be ready with better diagnostics"""
        print(f"Waiting for Airbyte services to be ready (timeout: {timeout}s)...")
    
        # Check container status periodically
        end_time = time.time() + timeout
        check_interval = 10  # seconds
        attempt = 0
    
        while time.time() < end_time:
            attempt += 1
            print(f"\nAttempt {attempt}: Checking Airbyte container status...")
    
            containers = [
                "airbyte-db",
                "airbyte-temporal",
                "airbyte-server",
                "airbyte-worker",
                "airbyte-proxy",
            ]
    
            for container in containers:
                try:
                    status = subprocess.check_output(
                        f"docker ps --filter name={container} --format '{{{{.Status}}}}'",
                        shell=True,
                        text=True,
                    ).strip()
                    if status:
                        health = check_container_health(container)
                        if health:
                            status_msg = f"RUNNING - {status} (Health: {health})"
                        else:
                            status_msg = f"RUNNING - {status}"
                        print(f"{container}: {status_msg}")
    
                        if health and health not in ["healthy", "starting"]:
                            print(f"⚠️ {container} is in {health} state")
                    else:
                        print(f"❌ {container}: NOT RUNNING")
                except Exception as e:
                    print(f"Error checking {container}: {str(e)}")
    
            # Try to determine a working API URL
            global AIRBYTE_API_URL
            api_url, needs_auth = get_api_url_for_test()
            AIRBYTE_API_URL = api_url
            print(f"Testing API URL: {api_url} (Auth: {needs_auth})")
    
            try:
                # Try to get a workspaces list as a deeper check
                auth = (BASIC_AUTH_USERNAME, BASIC_AUTH_PASSWORD) if needs_auth else None
    
                workspaces_response = requests.post(
                    f"{api_url}/workspaces/list", auth=auth, json={}, timeout=10
                )
    
                if workspaces_response.status_code == 200:
                    print(
                        "✅ Successfully connected to Airbyte API and retrieved workspaces!"
                    )
                    return True
                else:
                    print(
                        f"❌ API request failed: {workspaces_response.status_code} - {workspaces_response.text[:100]}"
                    )
            except requests.RequestException as e:
                print(f"❌ API connection error: {type(e).__name__}: {str(e)}")
    
            # If we're halfway through the timeout and still not ready, check logs for errors
            if attempt % 3 == 0 or time.time() > (end_time - timeout / 2):
                check_logs = ["airbyte-server", "airbyte-proxy", "airbyte-db"]
                for container in check_logs:
                    print(f"\nChecking recent logs for {container}:")
                    try:
                        logs = subprocess.check_output(
                            f"docker logs {container} --tail 10", shell=True, text=True
                        )
                        print(logs)
                    except Exception:
                        print(f"Could not retrieve logs for {container}")
    
            # Wait before next check
            print(f"Waiting {check_interval} seconds before next check...")
            time.sleep(check_interval)
    
        # If we got here, we timed out
        print("⛔ Timeout waiting for Airbyte services!")
        diagnose_airbyte_proxy_issue()
>       raise TimeoutError(f"Airbyte API did not become ready within {timeout} seconds")
E       TimeoutError: Airbyte API did not become ready within 600 seconds

.../integration/airbyte/test_airbyte.py:316: TimeoutError
tests.integration.airbyte.test_airbyte::test_airbyte_schema_filter
Stack Traces | 0.001s run time
docker_compose_runner = <function docker_compose_runner.<locals>.run at 0x7f0b81265d70>
pytestconfig = <_pytest.config.Config object at 0x7f0bc90d0b90>
test_resources_dir = PosixPath('.../tests/integration/airbyte')
set_docker_env_vars = None

    @pytest.fixture(scope="module")
    def airbyte_service(
        docker_compose_runner: Any,
        pytestconfig: Any,
        test_resources_dir: Path,
        set_docker_env_vars: None,
    ) -> Generator[Any, None, None]:
        """Start Airbyte and test databases using Docker Compose with better diagnostics"""
        print("\n\nStarting Docker Compose services for Airbyte...\n")
    
        # Set the default API URL - this may be updated later
        global AIRBYTE_API_URL
        api_url = f"http://{AIRBYTE_API_HOST}:{AIRBYTE_API_PORT}/api/v1"
        AIRBYTE_API_URL = api_url
    
        # If containers are already running, we should stop them first
        try:
            print("Stopping any existing containers...")
            subprocess.run(
                f"docker-compose -f {test_resources_dir}/docker-compose.yml down -v",
                shell=True,
                check=False,
                timeout=60,
            )
            time.sleep(5)  # Give some time for cleanup
        except Exception as e:
            print(f"Error during cleanup: {str(e)}")
    
        with docker_compose_runner(
            test_resources_dir / "docker-compose.yml", "airbyte"
        ) as docker_services:
            try:
                # Wait for PostgreSQL test database with longer timeout
                print("Waiting for test-postgres...")
                wait_for_port(
                    docker_services,
                    "test-postgres",
                    POSTGRES_PORT,
                    timeout=120,
                    checker=lambda: is_postgres_ready("test-postgres"),
                )
                print("test-postgres is ready")
    
                # Wait for MySQL test database with longer timeout
                print("Waiting for test-mysql...")
                wait_for_port(
                    docker_services,
                    "test-mysql",
                    MYSQL_PORT,
                    timeout=120,
                    checker=lambda: is_mysql_ready("test-mysql"),
                )
                print("test-mysql is ready")
    
                # Wait for Airbyte server to be available - try both ports
                print("Checking if airbyte-server port is open...")
                try:
                    wait_for_port(
                        docker_services,
                        "airbyte-server",
                        8001,
                        timeout=30,
                    )
                    print("airbyte-server port 8001 is open")
                except Exception:
                    print("airbyte-server port 8001 check failed, trying proxy...")
                    try:
                        wait_for_port(
                            docker_services,
                            "airbyte-proxy",
                            8001,
                            timeout=30,
                        )
                        print("airbyte-proxy port 8001 is open")
                    except Exception:
                        print("WARNING: Both server and proxy port 8001 checks failed")
    
                # Wait for Airbyte web UI to be available
                try:
                    wait_for_port(
                        docker_services,
                        "airbyte-proxy",
                        8000,
                        timeout=30,
                    )
                    print("airbyte-proxy port 8000 is open")
                except Exception:
                    print("WARNING: Proxy port 8000 check failed")
    
                # Wait for Airbyte API to be ready with more comprehensive checks
>               wait_for_airbyte_ready(timeout=600)

.../integration/airbyte/test_airbyte.py:620: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

timeout = 600

    def wait_for_airbyte_ready(timeout: int = 600) -> bool:
        """Wait for Airbyte API to be ready with better diagnostics"""
        print(f"Waiting for Airbyte services to be ready (timeout: {timeout}s)...")
    
        # Check container status periodically
        end_time = time.time() + timeout
        check_interval = 10  # seconds
        attempt = 0
    
        while time.time() < end_time:
            attempt += 1
            print(f"\nAttempt {attempt}: Checking Airbyte container status...")
    
            containers = [
                "airbyte-db",
                "airbyte-temporal",
                "airbyte-server",
                "airbyte-worker",
                "airbyte-proxy",
            ]
    
            for container in containers:
                try:
                    status = subprocess.check_output(
                        f"docker ps --filter name={container} --format '{{{{.Status}}}}'",
                        shell=True,
                        text=True,
                    ).strip()
                    if status:
                        health = check_container_health(container)
                        if health:
                            status_msg = f"RUNNING - {status} (Health: {health})"
                        else:
                            status_msg = f"RUNNING - {status}"
                        print(f"{container}: {status_msg}")
    
                        if health and health not in ["healthy", "starting"]:
                            print(f"⚠️ {container} is in {health} state")
                    else:
                        print(f"❌ {container}: NOT RUNNING")
                except Exception as e:
                    print(f"Error checking {container}: {str(e)}")
    
            # Try to determine a working API URL
            global AIRBYTE_API_URL
            api_url, needs_auth = get_api_url_for_test()
            AIRBYTE_API_URL = api_url
            print(f"Testing API URL: {api_url} (Auth: {needs_auth})")
    
            try:
                # Try to get a workspaces list as a deeper check
                auth = (BASIC_AUTH_USERNAME, BASIC_AUTH_PASSWORD) if needs_auth else None
    
                workspaces_response = requests.post(
                    f"{api_url}/workspaces/list", auth=auth, json={}, timeout=10
                )
    
                if workspaces_response.status_code == 200:
                    print(
                        "✅ Successfully connected to Airbyte API and retrieved workspaces!"
                    )
                    return True
                else:
                    print(
                        f"❌ API request failed: {workspaces_response.status_code} - {workspaces_response.text[:100]}"
                    )
            except requests.RequestException as e:
                print(f"❌ API connection error: {type(e).__name__}: {str(e)}")
    
            # If we're halfway through the timeout and still not ready, check logs for errors
            if attempt % 3 == 0 or time.time() > (end_time - timeout / 2):
                check_logs = ["airbyte-server", "airbyte-proxy", "airbyte-db"]
                for container in check_logs:
                    print(f"\nChecking recent logs for {container}:")
                    try:
                        logs = subprocess.check_output(
                            f"docker logs {container} --tail 10", shell=True, text=True
                        )
                        print(logs)
                    except Exception:
                        print(f"Could not retrieve logs for {container}")
    
            # Wait before next check
            print(f"Waiting {check_interval} seconds before next check...")
            time.sleep(check_interval)
    
        # If we got here, we timed out
        print("⛔ Timeout waiting for Airbyte services!")
        diagnose_airbyte_proxy_issue()
>       raise TimeoutError(f"Airbyte API did not become ready within {timeout} seconds")
E       TimeoutError: Airbyte API did not become ready within 600 seconds

.../integration/airbyte/test_airbyte.py:316: TimeoutError
tests.integration.nifi.test_nifi::test_nifi_ingest_cluster
Stack Traces | 0.001s run time
docker_compose_runner = <function docker_compose_runner.<locals>.run at 0x7fb505f95390>
test_resources_dir = PosixPath('.../tests/integration/nifi')

    @pytest.fixture(scope="module")
    def loaded_nifi(docker_compose_runner, test_resources_dir):
>       with docker_compose_runner(
            test_resources_dir / "docker-compose.yml", "nifi"
        ) as docker_services:

.../integration/nifi/test_nifi.py:24: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
.../hostedtoolcache/Python/3.11.12....../x64/lib/python3.11/contextlib.py:137: in __enter__
    return next(self.gen)
.../datahub/testing/docker_utils.py:59: in run
    with pytest_docker.plugin.get_docker_services(
.../hostedtoolcache/Python/3.11.12....../x64/lib/python3.11/contextlib.py:137: in __enter__
    return next(self.gen)
venv/lib/python3.11........./site-packages/pytest_docker/plugin.py:213: in get_docker_services
    docker_compose.execute(command)
venv/lib/python3.11........./site-packages/pytest_docker/plugin.py:141: in execute
    return execute(command, **kwargs)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

command = 'docker compose -f ".../tests/integration/nifi/docker-compose.yml" -p "pytest4834-nifi" up --build -d'
success_codes = (0,), ignore_stderr = False

    def execute(command: str, success_codes: Iterable[int] = (0,), ignore_stderr: bool = False) -> Union[bytes, Any]:
        """Run a shell command."""
        try:
            stderr_pipe = subprocess.DEVNULL if ignore_stderr else subprocess.STDOUT
            output = subprocess.check_output(command, stderr=stderr_pipe, shell=True)
            status = 0
        except subprocess.CalledProcessError as error:
            output = error.output or b""
            status = error.returncode
            command = error.cmd
    
        if status not in success_codes:
>           raise Exception(
                'Command {} returned {}: """{}""".'.format(command, status, output.decode("utf-8"))
            )
E           Exception: Command docker compose -f ".../tests/integration/nifi/docker-compose.yml" -p "pytest4834-nifi" up --build -d returned 2: """ sftp_public_host Pulling 
E            nifi03 Pulling 
E            nifi_zookeeper Pulling 
E            nifi01 Pulling 
E            nifi02 Pulling 
E            nifi1 Pulling 
E            c1c1a7d83fb1 Pulling fs layer 
E            c4368f297a17 Pulling fs layer 
E            b1088b603224 Pulling fs layer 
E            4b6889cc4ccf Pulling fs layer 
E            716226367eab Pulling fs layer 
E            4b6889cc4ccf Waiting 
E            716226367eab Waiting 
E            b1088b603224 Downloading [==================================================>]     449B/449B
E            b1088b603224 Download complete 
E            c1c1a7d83fb1 Downloading [>                                                  ]  539.9kB/55.08MB
E            c4368f297a17 Downloading [>                                                  ]  167.3kB/16.33MB
E            c1c1a7d83fb1 Downloading [======>                                            ]  6.978MB/55.08MB
E            c4368f297a17 Downloading [==========================>                        ]  8.678MB/16.33MB
E            c4368f297a17 Verifying Checksum 
E            c4368f297a17 Download complete 
E            c1c1a7d83fb1 Downloading [=================>                                 ]  19.27MB/55.08MB
E            4b6889cc4ccf Downloading [========================>                          ]     720B/1.467kB
E            4b6889cc4ccf Download complete 
E            c1c1a7d83fb1 Downloading [==========================>                        ]  28.88MB/55.08MB
E            d1669123f281 Pulling fs layer 
E            7723b4ddeaef Pulling fs layer 
E            42e8f29e341c Pulling fs layer 
E            2b4e47f3a63c Pulling fs layer 
E            f7ab9c8a4309 Pulling fs layer 
E            0df7f72e7206 Pulling fs layer 
E            e1ec4c9faf57 Pulling fs layer 
E            b266498bb690 Pulling fs layer 
E            23bcf05950ba Pulling fs layer 
E            6e56b7e91e85 Pulling fs layer 
E            4f4fb700ef54 Pulling fs layer 
E            42e8f29e341c Waiting 
E            2b4e47f3a63c Waiting 
E            f7ab9c8a4309 Waiting 
E            0df7f72e7206 Waiting 
E            e1ec4c9faf57 Waiting 
E            b266498bb690 Waiting 
E            23bcf05950ba Waiting 
E            6e56b7e91e85 Waiting 
E            4f4fb700ef54 Waiting 
E            7723b4ddeaef Waiting 
E            c1c1a7d83fb1 Downloading [==================================>                ]  37.46MB/55.08MB
E            716226367eab Downloading [=============================>                     ]     720B/1.227kB
E            716226367eab Downloading [==================================================>]  1.227kB/1.227kB
E            716226367eab Download complete 
E            c1c1a7d83fb1 Downloading [=========================================>         ]  46.02MB/55.08MB
E            c1c1a7d83fb1 Downloading [=============================================>     ]  50.31MB/55.08MB
E            c1c1a7d83fb1 Verifying Checksum 
E            c1c1a7d83fb1 Download complete 
E            c1c1a7d83fb1 Extracting [>                                                  ]  557.1kB/55.08MB
E            d1669123f281 Pulling fs layer 
E            7723b4ddeaef Pulling fs layer 
E            42e8f29e341c Pulling fs layer 
E            2b4e47f3a63c Pulling fs layer 
E            f7ab9c8a4309 Pulling fs layer 
E            0df7f72e7206 Pulling fs layer 
E            e1ec4c9faf57 Pulling fs layer 
E            b266498bb690 Pulling fs layer 
E            23bcf05950ba Pulling fs layer 
E            42e8f29e341c Waiting 
E            6e56b7e91e85 Pulling fs layer 
E            4f4fb700ef54 Pulling fs layer 
E            4f4fb700ef54 Waiting 
E            2b4e47f3a63c Waiting 
E            f7ab9c8a4309 Waiting 
E            0df7f72e7206 Waiting 
E            e1ec4c9faf57 Waiting 
E            b266498bb690 Waiting 
E            23bcf05950ba Waiting 
E            6e56b7e91e85 Waiting 
E            7723b4ddeaef Waiting 
E            d1669123f281 Downloading [>                                                  ]  310.5kB/30.43MB
E            d1669123f281 Downloading [>                                                  ]  310.5kB/30.43MB
E            c1c1a7d83fb1 Extracting [===>                                               ]  3.899MB/55.08MB
E            d1669123f281 Downloading [=============>                                     ]  8.125MB/30.43MB
E            d1669123f281 Downloading [=============>                                     ]  8.125MB/30.43MB
E            c1c1a7d83fb1 Extracting [========>                                          ]   9.47MB/55.08MB
E            d1669123f281 Downloading [==============================>                    ]  18.43MB/30.43MB
E            d1669123f281 Downloading [==============================>                    ]  18.43MB/30.43MB
E            7723b4ddeaef Downloading [>                                                  ]  127.7kB/12.49MB
E            7723b4ddeaef Downloading [>                                                  ]  127.7kB/12.49MB
E            c1c1a7d83fb1 Extracting [=============>                                     ]  15.04MB/55.08MB
E            d1669123f281 Verifying Checksum 
E            d1669123f281 Verifying Checksum 
E            d1669123f281 Download complete 
E            d1669123f281 Download complete 
E            7723b4ddeaef Downloading [==>                                                ]  520.9kB/12.49MB
E            7723b4ddeaef Downloading [==>                                                ]  520.9kB/12.49MB
E            d1669123f281 Extracting [>                                                  ]  327.7kB/30.43MB
E            d1669123f281 Extracting [>                                                  ]  327.7kB/30.43MB
E            c1c1a7d83fb1 Extracting [================>                                  ]  17.83MB/55.08MB
E            7723b4ddeaef Downloading [======>                                            ]  1.705MB/12.49MB
E            7723b4ddeaef Downloading [======>                                            ]  1.705MB/12.49MB
E            d1669123f281 Extracting [=========>                                         ]  5.571MB/30.43MB
E            d1669123f281 Extracting [=========>                                         ]  5.571MB/30.43MB
E            d1669123f281 Pulling fs layer 
E            7723b4ddeaef Pulling fs layer 
E            42e8f29e341c Pulling fs layer 
E            2b4e47f3a63c Pulling fs layer 
E            f7ab9c8a4309 Pulling fs layer 
E            0df7f72e7206 Pulling fs layer 
E            e1ec4c9faf57 Pulling fs layer 
E            b266498bb690 Pulling fs layer 
E            23bcf05950ba Pulling fs layer 
E            42e8f29e341c Waiting 
E            6e56b7e91e85 Pulling fs layer 
E            4f4fb700ef54 Pulling fs layer 
E            4f4fb700ef54 Waiting 
E            2b4e47f3a63c Waiting 
E            f7ab9c8a4309 Waiting 
E            0df7f72e7206 Waiting 
E            e1ec4c9faf57 Waiting 
E            b266498bb690 Waiting 
E            23bcf05950ba Waiting 
E            6e56b7e91e85 Waiting 
E            d1669123f281 Extracting [=========>                                         ]  5.571MB/30.43MB
E            7723b4ddeaef Downloading [======>                                            ]  1.705MB/12.49MB
E            46c8804bab5c Pulling fs layer 
E            46c8804bab5c Waiting 
E            c1c1a7d83fb1 Extracting [======================>                            ]  24.51MB/55.08MB
E            7723b4ddeaef Downloading [==================>                                ]  4.596MB/12.49MB
E            7723b4ddeaef Downloading [==================>                                ]  4.596MB/12.49MB
E            7723b4ddeaef Downloading [==================>                                ]  4.596MB/12.49MB
E            d1669123f281 Extracting [=============>                                     ]  8.192MB/30.43MB
E            d1669123f281 Extracting [=============>                                     ]  8.192MB/30.43MB
E            d1669123f281 Extracting [=============>                                     ]  8.192MB/30.43MB
E            42e8f29e341c Downloading [>                                                  ]  471.7kB/46.67MB
E            42e8f29e341c Downloading [>                                                  ]  471.7kB/46.67MB
E            42e8f29e341c Downloading [>                                                  ]  471.7kB/46.67MB
E            7723b4ddeaef Downloading [========================================>          ]  10.12MB/12.49MB
E            7723b4ddeaef Downloading [========================================>          ]  10.12MB/12.49MB
E            7723b4ddeaef Downloading [========================================>          ]  10.12MB/12.49MB
E            2b4e47f3a63c Downloading [==================================================>]     161B/161B
E            2b4e47f3a63c Verifying Checksum 
E            2b4e47f3a63c Download complete 
E            2b4e47f3a63c Verifying Checksum 
E            2b4e47f3a63c Download complete 
E            2b4e47f3a63c Verifying Checksum 
E            2b4e47f3a63c Download complete 
E            d1669123f281 Extracting [=================>                                 ]  10.81MB/30.43MB
E            d1669123f281 Extracting [=================>                                 ]  10.81MB/30.43MB
E            d1669123f281 Extracting [=================>                                 ]  10.81MB/30.43MB
E            7723b4ddeaef Downloading [==================================================>]  12.49MB/12.49MB
E            7723b4ddeaef Downloading [==================================================>]  12.49MB/12.49MB
E            7723b4ddeaef Verifying Checksum 
E            7723b4ddeaef Verifying Checksum 
E            7723b4ddeaef Download complete 
E            7723b4ddeaef Download complete 
E            7723b4ddeaef Verifying Checksum 
E            7723b4ddeaef Download complete 
E            d1669123f281 Pulling fs layer 
E            7723b4ddeaef Pulling fs layer 
E            42e8f29e341c Pulling fs layer 
E            2b4e47f3a63c Pulling fs layer 
E            f7ab9c8a4309 Pulling fs layer 
E            0df7f72e7206 Pulling fs layer 
E            e1ec4c9faf57 Pulling fs layer 
E            b266498bb690 Pulling fs layer 
E            23bcf05950ba Pulling fs layer 
E            6e56b7e91e85 Pulling fs layer 
E            4f4fb700ef54 Pulling fs layer 
E            4f4fb700ef54 Waiting 
E            f7ab9c8a4309 Waiting 
E            0df7f72e7206 Waiting 
E            e1ec4c9faf57 Waiting 
E            b266498bb690 Waiting 
E            23bcf05950ba Waiting 
E            6e56b7e91e85 Waiting 
E            d1669123f281 Extracting [=================>                                 ]  10.81MB/30.43MB
E            7723b4ddeaef Download complete 
E            42e8f29e341c Downloading [>                                                  ]  471.7kB/46.67MB
E            2b4e47f3a63c Download complete 
E            42e8f29e341c Downloading [==>                                                ]  1.897MB/46.67MB
E            42e8f29e341c Downloading [==>                                                ]  1.897MB/46.67MB
E            42e8f29e341c Downloading [==>                                                ]  1.897MB/46.67MB
E            42e8f29e341c Downloading [==>                                                ]  1.897MB/46.67MB
E            c1c1a7d83fb1 Extracting [==========================>                        ]  28.97MB/55.08MB
E            d1669123f281 Extracting [=============================>                     ]  17.69MB/30.43MB
E            d1669123f281 Extracting [=============================>                     ]  17.69MB/30.43MB
E            d1669123f281 Extracting [=============================>                     ]  17.69MB/30.43MB
E            d1669123f281 Extracting [=============================>                     ]  17.69MB/30.43MB
E            42e8f29e341c Downloading [======>                                            ]  6.141MB/46.67MB
E            42e8f29e341c Downloading [======>                                            ]  6.141MB/46.67MB
E            42e8f29e341c Downloading [======>                                            ]  6.141MB/46.67MB
E            42e8f29e341c Downloading [======>                                            ]  6.141MB/46.67MB
E            c1c1a7d83fb1 Extracting [=============================>                     ]  32.87MB/55.08MB
E            d1669123f281 Extracting [=======================================>           ]  24.25MB/30.43MB
E            d1669123f281 Extracting [=======================================>           ]  24.25MB/30.43MB
E            d1669123f281 Extracting [=======================================>           ]  24.25MB/30.43MB
E            d1669123f281 Extracting [=======================================>           ]  24.25MB/30.43MB
E            42e8f29e341c Downloading [=================>                                 ]   16.1MB/46.67MB
E            42e8f29e341c Downloading [=================>                                 ]   16.1MB/46.67MB
E            42e8f29e341c Downloading [=================>                                 ]   16.1MB/46.67MB
E            42e8f29e341c Downloading [=================>                                 ]   16.1MB/46.67MB
E            c1c1a7d83fb1 Extracting [==================================>                ]  38.44MB/55.08MB
E            0df7f72e7206 Downloading [====================================>              ]     721B/986B
E            0df7f72e7206 Downloading [====================================>              ]     721B/986B
E            0df7f72e7206 Downloading [====================================>              ]     721B/986B
E            0df7f72e7206 Downloading [==================================================>]     986B/986B
E            0df7f72e7206 Downloading [====================================>              ]     721B/986B
E            0df7f72e7206 Downloading [==================================================>]     986B/986B
E            0df7f72e7206 Downloading [==================================================>]     986B/986B
E            0df7f72e7206 Downloading [==================================================>]     986B/986B
E            0df7f72e7206 Verifying Checksum 
E            0df7f72e7206 Download complete 
E            0df7f72e7206 Download complete 
E            0df7f72e7206 Verifying Checksum 
E            0df7f72e7206 Download complete 
E            0df7f72e7206 Verifying Checksum 
E            0df7f72e7206 Download complete 
E            42e8f29e341c Downloading [===========================>                       ]  26.01MB/46.67MB
E            42e8f29e341c Downloading [===========================>                       ]  26.01MB/46.67MB
E            42e8f29e341c Downloading [===========================>                       ]  26.01MB/46.67MB
E            42e8f29e341c Downloading [===========================>                       ]  26.01MB/46.67MB
E            c1c1a7d83fb1 Extracting [======================================>            ]  42.34MB/55.08MB
E            d1669123f281 Extracting [===========================================>       ]  26.54MB/30.43MB
E            d1669123f281 Extracting [===========================================>       ]  26.54MB/30.43MB
E            d1669123f281 Extracting [===========================================>       ]  26.54MB/30.43MB
E            d1669123f281 Extracting [===========================================>       ]  26.54MB/30.43MB
E            42e8f29e341c Downloading [=======================================>           ]  36.91MB/46.67MB
E            42e8f29e341c Downloading [=======================================>           ]  36.91MB/46.67MB
E            42e8f29e341c Downloading [=======================================>           ]  36.91MB/46.67MB
E            42e8f29e341c Downloading [=======================================>           ]  36.91MB/46.67MB
E            c1c1a7d83fb1 Extracting [========================================>          ]  45.12MB/55.08MB
E            d1669123f281 Extracting [===============================================>   ]  28.84MB/30.43MB
E            d1669123f281 Extracting [===============================================>   ]  28.84MB/30.43MB
E            d1669123f281 Extracting [===============================================>   ]  28.84MB/30.43MB
E            d1669123f281 Extracting [===============================================>   ]  28.84MB/30.43MB
E            42e8f29e341c Verifying Checksum 
E            42e8f29e341c Verifying Checksum 
E            42e8f29e341c Verifying Checksum 
E            42e8f29e341c Download complete 
E            42e8f29e341c Verifying Checksum 
E            42e8f29e341c Download complete 
E            42e8f29e341c Download complete 
E            42e8f29e341c Download complete 
E            c1c1a7d83fb1 Extracting [===========================================>       ]  48.46MB/55.08MB
E            f7ab9c8a4309 Downloading [==============>                                    ]  1.369kB/4.663kB
E            f7ab9c8a4309 Download complete 
E            f7ab9c8a4309 Downloading [==============>                                    ]  1.369kB/4.663kB
E            f7ab9c8a4309 Downloading [==============>                                    ]  1.369kB/4.663kB
E            f7ab9c8a4309 Downloading [==================================================>]  4.663kB/4.663kB
E            f7ab9c8a4309 Download complete 
E            f7ab9c8a4309 Download complete 
E            f7ab9c8a4309 Downloading [==============>                                    ]  1.369kB/4.663kB
E            f7ab9c8a4309 Download complete 
E            d1669123f281 Extracting [=================================================> ]  30.15MB/30.43MB
E            d1669123f281 Extracting [=================================================> ]  30.15MB/30.43MB
E            d1669123f281 Extracting [=================================================> ]  30.15MB/30.43MB
E            d1669123f281 Extracting [=================================================> ]  30.15MB/30.43MB
E            c1c1a7d83fb1 Extracting [===============================================>   ]  51.81MB/55.08MB
E            d1669123f281 Extracting [==================================================>]  30.43MB/30.43MB
E            d1669123f281 Extracting [==================================================>]  30.43MB/30.43MB
E            d1669123f281 Extracting [==================================================>]  30.43MB/30.43MB
E            d1669123f281 Extracting [==================================================>]  30.43MB/30.43MB
E            d1669123f281 Pull complete 
E            d1669123f281 Pull complete 
E            d1669123f281 Pull complete 
E            d1669123f281 Pull complete 
E            7723b4ddeaef Extracting [>                                                  ]  131.1kB/12.49MB
E            7723b4ddeaef Extracting [>                                                  ]  131.1kB/12.49MB
E            7723b4ddeaef Extracting [>                                                  ]  131.1kB/12.49MB
E            7723b4ddeaef Extracting [>                                                  ]  131.1kB/12.49MB
E            c1c1a7d83fb1 Extracting [================================================>  ]  52.92MB/55.08MB
E            7723b4ddeaef Extracting [========>                                          ]  2.097MB/12.49MB
E            7723b4ddeaef Extracting [========>                                          ]  2.097MB/12.49MB
E            7723b4ddeaef Extracting [========>                                          ]  2.097MB/12.49MB
E            7723b4ddeaef Extracting [========>                                          ]  2.097MB/12.49MB
E            b266498bb690 Downloading [>                                                  ]  537.3kB/131.9MB
E            b266498bb690 Downloading [>                                                  ]  537.3kB/131.9MB
E            b266498bb690 Downloading [>                                                  ]  537.3kB/131.9MB
E            b266498bb690 Downloading [>                                                  ]  537.3kB/131.9MB
E            e1ec4c9faf57 Downloading [>                                                  ]  164.7kB/16.45MB
E            e1ec4c9faf57 Downloading [>                                                  ]  164.7kB/16.45MB
E            e1ec4c9faf57 Downloading [>                                                  ]  164.7kB/16.45MB
E            e1ec4c9faf57 Downloading [>                                                  ]  164.7kB/16.45MB
E            7723b4ddeaef Extracting [===================>                               ]   4.85MB/12.49MB
E            7723b4ddeaef Extracting [===================>                               ]   4.85MB/12.49MB
E            7723b4ddeaef Extracting [===================>                               ]   4.85MB/12.49MB
E            7723b4ddeaef Extracting [===================>                               ]   4.85MB/12.49MB
E            b266498bb690 Downloading [=>                                                 ]   4.83MB/131.9MB
E            b266498bb690 Downloading [=>                                                 ]   4.83MB/131.9MB
E            b266498bb690 Downloading [=>                                                 ]   4.83MB/131.9MB
E            b266498bb690 Downloading [=>                                                 ]   4.83MB/131.9MB
E            e1ec4c9faf57 Downloading [==>                                                ]  701.1kB/16.45MB
E            e1ec4c9faf57 Downloading [==>                                                ]  701.1kB/16.45MB
E            e1ec4c9faf57 Downloading [==>                                                ]  701.1kB/16.45MB
E            e1ec4c9faf57 Downloading [==>                                                ]  701.1kB/16.45MB
E            23bcf05950ba Downloading [>                                                  ]  533.1kB/1.464GB
E            23bcf05950ba Downloading [>                                                  ]  533.1kB/1.464GB
E            23bcf05950ba Downloading [>                                                  ]  533.1kB/1.464GB
E            23bcf05950ba Downloading [>                                                  ]  533.1kB/1.464GB
E            7723b4ddeaef Extracting [===================================>               ]  8.782MB/12.49MB
E            7723b4ddeaef Extracting [===================================>               ]  8.782MB/12.49MB
E            7723b4ddeaef Extracting [===================================>               ]  8.782MB/12.49MB
E            7723b4ddeaef Extracting [===================================>               ]  8.782MB/12.49MB
E            b266498bb690 Downloading [====>                                              ]  12.33MB/131.9MB
E            b266498bb690 Downloading [====>                                              ]  12.33MB/131.9MB
E            b266498bb690 Downloading [====>                                              ]  12.33MB/131.9MB
E            b266498bb690 Downloading [====>                                              ]  12.33MB/131.9MB
E            e1ec4c9faf57 Downloading [=======>                                           ]  2.467MB/16.45MB
E            e1ec4c9faf57 Downloading [=======>                                           ]  2.467MB/16.45MB
E            e1ec4c9faf57 Downloading [=======>                                           ]  2.467MB/16.45MB
E            e1ec4c9faf57 Downloading [=======>                                           ]  2.467MB/16.45MB
E            23bcf05950ba Downloading [>                                                  ]  2.135MB/1.464GB
E            23bcf05950ba Downloading [>                                                  ]  2.135MB/1.464GB
E            23bcf05950ba Downloading [>                                                  ]  2.135MB/1.464GB
E            23bcf05950ba Downloading [>                                                  ]  2.135MB/1.464GB
E            c1c1a7d83fb1 Extracting [=================================================> ]  54.03MB/55.08MB
E            7723b4ddeaef Extracting [===========================================>       ]  10.88MB/12.49MB
E            7723b4ddeaef Extracting [===========================================>       ]  10.88MB/12.49MB
E            7723b4ddeaef Extracting [===========================================>       ]  10.88MB/12.49MB
E            7723b4ddeaef Extracting [===========================================>       ]  10.88MB/12.49MB
E            e1ec4c9faf57 Downloading [=====================>                             ]  7.042MB/16.45MB
E            e1ec4c9faf57 Downloading [=====================>                             ]  7.042MB/16.45MB
E            e1ec4c9faf57 Downloading [=====================>                             ]  7.042MB/16.45MB
E            e1ec4c9faf57 Downloading [=====================>                             ]  7.042MB/16.45MB
E            b266498bb690 Downloading [=====>                                             ]  14.46MB/131.9MB
E            b266498bb690 Downloading [=====>                                             ]  14.46MB/131.9MB
E            b266498bb690 Downloading [=====>                                             ]  14.46MB/131.9MB
E            b266498bb690 Downloading [=====>                                             ]  14.46MB/131.9MB
E            23bcf05950ba Downloading [>                                                  ]  6.407MB/1.464GB
E            23bcf05950ba Downloading [>                                                  ]  6.407MB/1.464GB
E            23bcf05950ba Downloading [>                                                  ]  6.407MB/1.464GB
E            23bcf05950ba Downloading [>                                                  ]  6.407MB/1.464GB
E            e1ec4c9faf57 Verifying Checksum 
E            e1ec4c9faf57 Download complete 
E            e1ec4c9faf57 Download complete 
E            e1ec4c9faf57 Verifying Checksum 
E            e1ec4c9faf57 Download complete 
E            e1ec4c9faf57 Verifying Checksum 
E            e1ec4c9faf57 Download complete 
E            c1c1a7d83fb1 Extracting [=================================================> ]  54.59MB/55.08MB
E            b266498bb690 Downloading [=======>                                           ]  19.84MB/131.9MB
E            b266498bb690 Downloading [=======>                                           ]  19.84MB/131.9MB
E            b266498bb690 Downloading [=======>                                           ]  19.84MB/131.9MB
E            b266498bb690 Downloading [=======>                                           ]  19.84MB/131.9MB
E            23bcf05950ba Downloading [>                                                  ]  16.07MB/1.464GB
E            23bcf05950ba Downloading [>                                                  ]  16.07MB/1.464GB
E            23bcf05950ba Downloading [>                                                  ]  16.07MB/1.464GB
E            23bcf05950ba Downloading [>                                                  ]  16.07MB/1.464GB
E            7723b4ddeaef Extracting [=============================================>     ]   11.4MB/12.49MB
E            7723b4ddeaef Extracting [=============================================>     ]   11.4MB/12.49MB
E            7723b4ddeaef Extracting [=============================================>     ]   11.4MB/12.49MB
E            7723b4ddeaef Extracting [=============================================>     ]   11.4MB/12.49MB
E            c1c1a7d83fb1 Extracting [==================================================>]  55.08MB/55.08MB
E            b266498bb690 Downloading [========>                                          ]  23.58MB/131.9MB
E            b266498bb690 Downloading [========>                                          ]  23.58MB/131.9MB
E            b266498bb690 Downloading [========>                                          ]  23.58MB/131.9MB
E            b266498bb690 Downloading [========>                                          ]  23.58MB/131.9MB
E            c1c1a7d83fb1 Pull complete 
E            c4368f297a17 Extracting [>                                                  ]  163.8kB/16.33MB
E            23bcf05950ba Downloading [>                                                  ]  24.64MB/1.464GB
E            23bcf05950ba Downloading [>                                                  ]  24.64MB/1.464GB
E            23bcf05950ba Downloading [>                                                  ]  24.64MB/1.464GB
E            23bcf05950ba Downloading [>                                                  ]  24.64MB/1.464GB
E            b266498bb690 Downloading [===========>                                       ]  30.55MB/131.9MB
E            b266498bb690 Downloading [===========>                                       ]  30.55MB/131.9MB
E            b266498bb690 Downloading [===========>                                       ]  30.55MB/131.9MB
E            b266498bb690 Downloading [===========>                                       ]  30.55MB/131.9MB
E            7723b4ddeaef Extracting [==============================================>    ]  11.53MB/12.49MB
E            7723b4ddeaef Extracting [==============================================>    ]  11.53MB/12.49MB
E            7723b4ddeaef Extracting [==============================================>    ]  11.53MB/12.49MB
E            7723b4ddeaef Extracting [==============================================>    ]  11.53MB/12.49MB
E            23bcf05950ba Downloading [=>                                                 ]   35.9MB/1.464GB
E            23bcf05950ba Downloading [=>                                                 ]   35.9MB/1.464GB
E            23bcf05950ba Downloading [=>                                                 ]   35.9MB/1.464GB
E            23bcf05950ba Downloading [=>                                                 ]   35.9MB/1.464GB
E            c4368f297a17 Extracting [=======>                                           ]  2.294MB/16.33MB
E            6e56b7e91e85 Downloading [==================================================>]     220B/220B
E            6e56b7e91e85 Downloading [==================================================>]     220B/220B
E            6e56b7e91e85 Downloading [==================================================>]     220B/220B
E            6e56b7e91e85 Verifying Checksum 
E            6e56b7e91e85 Downloading [==================================================>]     220B/220B
E            6e56b7e91e85 Verifying Checksum 
E            6e56b7e91e85 Verifying Checksum 
E            6e56b7e91e85 Verifying Checksum 
E            6e56b7e91e85 Download complete 
E            6e56b7e91e85 Download complete 
E            6e56b7e91e85 Download complete 
E            6e56b7e91e85 Download complete 
E            b266498bb690 Downloading [==============>                                    ]  38.06MB/131.9MB
E            b266498bb690 Downloading [==============>                                    ]  38.06MB/131.9MB
E            b266498bb690 Downloading [==============>                                    ]  38.06MB/131.9MB
E            b266498bb690 Downloading [==============>                                    ]  38.06MB/131.9MB
E            7723b4ddeaef Extracting [==============================================>    ]  11.67MB/12.49MB
E            7723b4ddeaef Extracting [==============================================>    ]  11.67MB/12.49MB
E            7723b4ddeaef Extracting [==============================================>    ]  11.67MB/12.49MB
E            7723b4ddeaef Extracting [==============================================>    ]  11.67MB/12.49MB
E            c4368f297a17 Extracting [======================>                            ]  7.209MB/16.33MB
E            23bcf05950ba Downloading [=>                                                 ]  38.03MB/1.464GB
E            23bcf05950ba Downloading [=>                                                 ]  38.03MB/1.464GB
E            23bcf05950ba Downloading [=>                                                 ]  38.03MB/1.464GB
E            23bcf05950ba Downloading [=>                                                 ]  38.03MB/1.464GB
E            b266498bb690 Downloading [==================>                                ]  49.83MB/131.9MB
E            b266498bb690 Downloading [==================>                                ]  49.83MB/131.9MB
E            b266498bb690 Downloading [==================>                                ]  49.83MB/131.9MB
E            b266498bb690 Downloading [==================>                                ]  49.83MB/131.9MB
E            7723b4ddeaef Extracting [==================================================>]  12.49MB/12.49MB
E            7723b4ddeaef Extracting [==================================================>]  12.49MB/12.49MB
E            7723b4ddeaef Extracting [==================================================>]  12.49MB/12.49MB
E            7723b4ddeaef Extracting [==================================================>]  12.49MB/12.49MB
E            c4368f297a17 Extracting [=================================>                 ]  10.98MB/16.33MB
E            23bcf05950ba Downloading [=>                                                 ]   42.3MB/1.464GB
E            23bcf05950ba Downloading [=>                                                 ]   42.3MB/1.464GB
E            23bcf05950ba Downloading [=>                                                 ]   42.3MB/1.464GB
E            23bcf05950ba Downloading [=>                                                 ]   42.3MB/1.464GB
E            b266498bb690 Downloading [=====================>                             ]  57.32MB/131.9MB
E            b266498bb690 Downloading [=====================>                             ]  57.32MB/131.9MB
E            b266498bb690 Downloading [=====================>                             ]  57.32MB/131.9MB
E            b266498bb690 Downloading [=====================>                             ]  57.32MB/131.9MB
E            c4368f297a17 Extracting [==================================>                ]  11.14MB/16.33MB
E            4f4fb700ef54 Downloading [==================================================>]      32B/32B
E            4f4fb700ef54 Download complete 
E            4f4fb700ef54 Downloading [==================================================>]      32B/32B
E            4f4fb700ef54 Download complete 
E            4f4fb700ef54 Verifying Checksum 
E            4f4fb700ef54 Download complete 
E            4f4fb700ef54 Verifying Checksum 
E            4f4fb700ef54 Download complete 
E            23bcf05950ba Downloading [=>                                                 ]  45.52MB/1.464GB
E            23bcf05950ba Downloading [=>                                                 ]  45.52MB/1.464GB
E            23bcf05950ba Downloading [=>                                                 ]  45.52MB/1.464GB
E            23bcf05950ba Downloading [=>                                                 ]  45.52MB/1.464GB
E            b266498bb690 Downloading [=======================>                           ]  62.66MB/131.9MB
E            b266498bb690 Downloading [=======================>                           ]  62.66MB/131.9MB
E            b266498bb690 Downloading [=======================>                           ]  62.66MB/131.9MB
E            b266498bb690 Downloading [=======================>                           ]  62.66MB/131.9MB
E            c4368f297a17 Extracting [=========================================>         ]   13.6MB/16.33MB
E            23bcf05950ba Downloading [=>                                                 ]  54.05MB/1.464GB
E            23bcf05950ba Downloading [=>                                                 ]  54.05MB/1.464GB
E            23bcf05950ba Downloading [=>                                                 ]  54.05MB/1.464GB
E            23bcf05950ba Downloading [=>                                                 ]  54.05MB/1.464GB
E            b266498bb690 Downloading [=============================>                     ]  77.14MB/131.9MB
E            b266498bb690 Downloading [=============================>                     ]  77.14MB/131.9MB
E            b266498bb690 Downloading [=============================>                     ]  77.14MB/131.9MB
E            b266498bb690 Downloading [=============================>                     ]  77.14MB/131.9MB
E            23bcf05950ba Downloading [=>                                                 ]   57.8MB/1.464GB
E            23bcf05950ba Downloading [=>                                                 ]   57.8MB/1.464GB
E            23bcf05950ba Downloading [=>                                                 ]   57.8MB/1.464GB
E            23bcf05950ba Downloading [=>                                                 ]   57.8MB/1.464GB
E            b266498bb690 Downloading [================================>                  ]  85.15MB/131.9MB
E            b266498bb690 Downloading [================================>                  ]  85.15MB/131.9MB
E            b266498bb690 Downloading [================================>                  ]  85.15MB/131.9MB
E            b266498bb690 Downloading [================================>                  ]  85.15MB/131.9MB
E            c4368f297a17 Extracting [==========================================>        ]  13.93MB/16.33MB
E            46c8804bab5c Downloading [>                                                  ]  539.9kB/142.4MB
E            23bcf05950ba Downloading [==>                                                ]  65.34MB/1.464GB
E            23bcf05950ba Downloading [==>                                                ]  65.34MB/1.464GB
E            23bcf05950ba Downloading [==>                                                ]  65.34MB/1.464GB
E            23bcf05950ba Downloading [==>                                                ]  65.34MB/1.464GB
E            b266498bb690 Downloading [===================================>               ]   94.8MB/131.9MB
E            b266498bb690 Downloading [===================================>               ]   94.8MB/131.9MB
E            b266498bb690 Downloading [===================================>               ]   94.8MB/131.9MB
E            b266498bb690 Downloading [===================================>               ]   94.8MB/131.9MB
E            23bcf05950ba Downloading [==>                                                ]  69.61MB/1.464GB
E            46c8804bab5c Downloading [>                                                  ]  2.702MB/142.4MB
E            23bcf05950ba Downloading [==>                                                ]  69.61MB/1.464GB
E            23bcf05950ba Downloading [==>                                                ]  69.61MB/1.464GB
E            23bcf05950ba Downloading [==>                                                ]  69.61MB/1.464GB
E            b266498bb690 Downloading [====================================>              ]  97.47MB/131.9MB
E            b266498bb690 Downloading [====================================>              ]  97.47MB/131.9MB
E            b266498bb690 Downloading [====================================>              ]  97.47MB/131.9MB
E            b266498bb690 Downloading [====================================>              ]  97.47MB/131.9MB
E            23bcf05950ba Downloading [==>                                                ]  72.29MB/1.464GB
E            46c8804bab5c Downloading [===>                                               ]  9.149MB/142.4MB
E            23bcf05950ba Downloading [==>                                                ]  72.29MB/1.464GB
E            23bcf05950ba Downloading [==>                                                ]  72.29MB/1.464GB
E            23bcf05950ba Downloading [==>                                                ]  72.29MB/1.464GB
E            b266498bb690 Downloading [=========================================>         ]  109.3MB/131.9MB
E            b266498bb690 Downloading [=========================================>         ]  109.3MB/131.9MB
E            b266498bb690 Downloading [=========================================>         ]  109.3MB/131.9MB
E            b266498bb690 Downloading [=========================================>         ]  109.3MB/131.9MB
E            23bcf05950ba Downloading [==>                                                ]  80.84MB/1.464GB
E            b266498bb690 Downloading [=============================================>     ]  121.1MB/131.9MB
E            b266498bb690 Downloading [=============================================>     ]  121.1MB/131.9MB
E            23bcf05950ba Downloading [==>                                                ]  80.84MB/1.464GB
E            b266498bb690 Downloading [=============================================>     ]  121.1MB/131.9MB
E            23bcf05950ba Downloading [==>                                                ]  80.84MB/1.464GB
E            46c8804bab5c Downloading [======>                                            ]  17.19MB/142.4MB
E            23bcf05950ba Downloading [==>                                                ]  80.84MB/1.464GB
E            b266498bb690 Downloading [=============================================>     ]  121.1MB/131.9MB
E            c4368f297a17 Extracting [===========================================>       ]  14.09MB/16.33MB
E            b266498bb690 Verifying Checksum 
E            b266498bb690 Download complete 
E            b266498bb690 Verifying Checksum 
E            b266498bb690 Download complete 
E            b266498bb690 Verifying Checksum 
E            b266498bb690 Download complete 
E            b266498bb690 Verifying Checksum 
E            b266498bb690 Download complete 
E            23bcf05950ba Downloading [===>                                               ]  93.16MB/1.464GB
E            23bcf05950ba Downloading [===>                                               ]  93.16MB/1.464GB
E            23bcf05950ba Downloading [===>                                               ]  93.16MB/1.464GB
E            23bcf05950ba Downloading [===>                                               ]  93.16MB/1.464GB
E            c4368f297a17 Extracting [============================================>      ]  14.58MB/16.33MB
E            23bcf05950ba Downloading [===>                                               ]  103.9MB/1.464GB
E            23bcf05950ba Downloading [===>                                               ]  103.9MB/1.464GB
E            23bcf05950ba Downloading [===>                                               ]  103.9MB/1.464GB
E            23bcf05950ba Downloading [===>                                               ]  103.9MB/1.464GB
E            46c8804bab5c Downloading [=======>                                           ]  22.54MB/142.4MB
E            23bcf05950ba Downloading [===>                                               ]  110.3MB/1.464GB
E            23bcf05950ba Downloading [===>                                               ]  110.3MB/1.464GB
E            23bcf05950ba Downloading [===>                                               ]  110.3MB/1.464GB
E            23bcf05950ba Downloading [===>                                               ]  110.3MB/1.464GB
E            46c8804bab5c Downloading [========>                                          ]  24.16MB/142.4MB
E            7723b4ddeaef Pull complete 
E            7723b4ddeaef Pull complete 
E            7723b4ddeaef Pull complete 
E            7723b4ddeaef Pull complete 
E            c4368f297a17 Extracting [===============================================>   ]   15.4MB/16.33MB
E            42e8f29e341c Extracting [>                                                  ]  491.5kB/46.67MB
E            42e8f29e341c Extracting [>                                                  ]  491.5kB/46.67MB
E            42e8f29e341c Extracting [>                                                  ]  491.5kB/46.67MB
E            42e8f29e341c Extracting [>                                                  ]  491.5kB/46.67MB
E            46c8804bab5c Downloading [==========>                                        ]  30.05MB/142.4MB
E            23bcf05950ba Downloading [====>                                              ]  123.1MB/1.464GB
E            23bcf05950ba Downloading [====>                                              ]  123.1MB/1.464GB
E            23bcf05950ba Downloading [====>                                              ]  123.1MB/1.464GB
E            23bcf05950ba Downloading [====>                                              ]  123.1MB/1.464GB
E            42e8f29e341c Extracting [=======>                                           ]  7.373MB/46.67MB
E            42e8f29e341c Extracting [=======>                                           ]  7.373MB/46.67MB
E            42e8f29e341c Extracting [=======>                                           ]  7.373MB/46.67MB
E            42e8f29e341c Extracting [=======>                                           ]  7.373MB/46.67MB
E            46c8804bab5c Downloading [============>                                      ]  34.35MB/142.4MB
E            23bcf05950ba Downloading [====>                                              ]  131.7MB/1.464GB
E            23bcf05950ba Downloading [====>                                              ]  131.7MB/1.464GB
E            23bcf05950ba Downloading [====>                                              ]  131.7MB/1.464GB
E            23bcf05950ba Downloading [====>                                              ]  131.7MB/1.464GB
E            42e8f29e341c Extracting [==============>                                    ]  13.27MB/46.67MB
E            42e8f29e341c Extracting [==============>                                    ]  13.27MB/46.67MB
E            42e8f29e341c Extracting [==============>                                    ]  13.27MB/46.67MB
E            42e8f29e341c Extracting [==============>                                    ]  13.27MB/46.67MB
E            46c8804bab5c Downloading [=============>                                     ]   39.7MB/142.4MB
E            23bcf05950ba Downloading [====>                                              ]  138.6MB/1.464GB
E            23bcf05950ba Downloading [====>                                              ]  138.6MB/1.464GB
E            23bcf05950ba Downloading [====>                                              ]  138.6MB/1.464GB
E            23bcf05950ba Downloading [====>                                              ]  138.6MB/1.464GB
E            c4368f297a17 Extracting [===============================================>   ]  15.56MB/16.33MB
E            42e8f29e341c Extracting [=====================>                             ]  19.66MB/46.67MB
E            42e8f29e341c Extracting [=====================>                             ]  19.66MB/46.67MB
E            42e8f29e341c Extracting [=====================>                             ]  19.66MB/46.67MB
E            42e8f29e341c Extracting [=====================>                             ]  19.66MB/46.67MB
E            46c8804bab5c Downloading [=================>                                 ]  50.44MB/142.4MB
E            23bcf05950ba Downloading [====>                                              ]    144MB/1.464GB
E            23bcf05950ba Downloading [====>                                              ]    144MB/1.464GB
E            23bcf05950ba Downloading [====>                                              ]    144MB/1.464GB
E            23bcf05950ba Downloading [====>                                              ]    144MB/1.464GB
E            42e8f29e341c Extracting [===========================>                       ]  26.05MB/46.67MB
E            42e8f29e341c Extracting [===========================>                       ]  26.05MB/46.67MB
E            42e8f29e341c Extracting [===========================>                       ]  26.05MB/46.67MB
E            42e8f29e341c Extracting [===========================>                       ]  26.05MB/46.67MB
E            46c8804bab5c Downloading [====================>                              ]  57.96MB/142.4MB
E            23bcf05950ba Downloading [=====>                                             ]  153.6MB/1.464GB
E            23bcf05950ba Downloading [=====>                                             ]  153.6MB/1.464GB
E            23bcf05950ba Downloading [=====>                                             ]  153.6MB/1.464GB
E            23bcf05950ba Downloading [=====>                                             ]  153.6MB/1.464GB
E            42e8f29e341c Extracting [=================================>                 ]  31.46MB/46.67MB
E            42e8f29e341c Extracting [=================================>                 ]  31.46MB/46.67MB
E            42e8f29e341c Extracting [=================================>                 ]  31.46MB/46.67MB
E            42e8f29e341c Extracting [=================================>                 ]  31.46MB/46.67MB
E            46c8804bab5c Downloading [======================>                            ]  63.29MB/142.4MB
E            23bcf05950ba Downloading [=====>                                             ]  169.2MB/1.464GB
E            23bcf05950ba Downloading [=====>                                             ]  169.2MB/1.464GB
E            23bcf05950ba Downloading [=====>                                             ]  169.2MB/1.464GB
E            23bcf05950ba Downloading [=====>                                             ]  169.2MB/1.464GB
E            c4368f297a17 Extracting [================================================>  ]  15.73MB/16.33MB
E            42e8f29e341c Extracting [======================================>            ]  36.37MB/46.67MB
E            42e8f29e341c Extracting [======================================>            ]  36.37MB/46.67MB
E            42e8f29e341c Extracting [======================================>            ]  36.37MB/46.67MB
E            42e8f29e341c Extracting [======================================>            ]  36.37MB/46.67MB
E            46c8804bab5c Downloading [=========================>                         ]  72.42MB/142.4MB
E            23bcf05950ba Downloading [=====>                                             ]  175.6MB/1.464GB
E            23bcf05950ba Downloading [=====>                                             ]  175.6MB/1.464GB
E            23bcf05950ba Downloading [=====>                                             ]  175.6MB/1.464GB
E            23bcf05950ba Downloading [=====>                                             ]  175.6MB/1.464GB
E            c4368f297a17 Extracting [================================================>  ]  15.89MB/16.33MB
E            42e8f29e341c Extracting [=============================================>     ]  42.76MB/46.67MB
E            42e8f29e341c Extracting [=============================================>     ]  42.76MB/46.67MB
E            42e8f29e341c Extracting [=============================================>     ]  42.76MB/46.67MB
E            42e8f29e341c Extracting [=============================================>     ]  42.76MB/46.67MB
E            46c8804bab5c Downloading [===========================>                       ]  79.39MB/142.4MB
E            23bcf05950ba Downloading [======>                                            ]  192.3MB/1.464GB
E            23bcf05950ba Downloading [======>                                            ]  192.3MB/1.464GB
E            23bcf05950ba Downloading [======>                                            ]  192.3MB/1.464GB
E            23bcf05950ba Downloading [======>                                            ]  192.3MB/1.464GB
E            42e8f29e341c Extracting [==================================================>]  46.67MB/46.67MB
E            42e8f29e341c Extracting [==================================================>]  46.67MB/46.67MB
E            42e8f29e341c Extracting [==================================================>]  46.67MB/46.67MB
E            42e8f29e341c Extracting [==================================================>]  46.67MB/46.67MB
E            c4368f297a17 Extracting [==================================================>]  16.33MB/16.33MB
E            46c8804bab5c Downloading [==============================>                    ]  86.87MB/142.4MB
E            23bcf05950ba Downloading [======>                                            ]    203MB/1.464GB
E            23bcf05950ba Downloading [======>                                            ]    203MB/1.464GB
E            23bcf05950ba Downloading [======>                                            ]    203MB/1.464GB
E            23bcf05950ba Downloading [======>                                            ]    203MB/1.464GB
E            46c8804bab5c Downloading [===============================>                   ]  90.06MB/142.4MB
E            23bcf05950ba Downloading [=======>                                           ]    211MB/1.464GB
E            23bcf05950ba Downloading [=======>                                           ]    211MB/1.464GB
E            23bcf05950ba Downloading [=======>                                           ]    211MB/1.464GB
E            23bcf05950ba Downloading [=======>                                           ]    211MB/1.464GB
E            46c8804bab5c Downloading [=================================>                 ]  95.41MB/142.4MB
E            23bcf05950ba Downloading [=======>                                           ]  222.3MB/1.464GB
E            23bcf05950ba Downloading [=======>                                           ]  222.3MB/1.464GB
E            23bcf05950ba Downloading [=======>                                           ]  222.3MB/1.464GB
E            23bcf05950ba Downloading [=======>                                           ]  222.3MB/1.464GB
E            46c8804bab5c Downloading [====================================>              ]  102.9MB/142.4MB
E            23bcf05950ba Downloading [=======>                                           ]  229.2MB/1.464GB
E            23bcf05950ba Downloading [=======>                                           ]  229.2MB/1.464GB
E            23bcf05950ba Downloading [=======>                                           ]  229.2MB/1.464GB
E            23bcf05950ba Downloading [=======>                                           ]  229.2MB/1.464GB
E            23bcf05950ba Downloading [========>                                          ]  235.6MB/1.464GB
E            23bcf05950ba Downloading [========>                                          ]  235.6MB/1.464GB
E            23bcf05950ba Downloading [========>                                          ]  235.6MB/1.464GB
E            23bcf05950ba Downloading [========>                                          ]  235.6MB/1.464GB
E            46c8804bab5c Downloading [=====================================>             ]  105.6MB/142.4MB
E            42e8f29e341c Pull complete 
E            42e8f29e341c Pull complete 
E            42e8f29e341c Pull complete 
E            42e8f29e341c Pull complete 
E            c4368f297a17 Pull complete 
E            2b4e47f3a63c Extracting [==================================================>]     161B/161B
E            2b4e47f3a63c Extracting [==================================================>]     161B/161B
E            2b4e47f3a63c Extracting [==================================================>]     161B/161B
E            2b4e47f3a63c Extracting [==================================================>]     161B/161B
E            2b4e47f3a63c Extracting [==================================================>]     161B/161B
E            2b4e47f3a63c Extracting [==================================================>]     161B/161B
E            2b4e47f3a63c Extracting [==================================================>]     161B/161B
E            2b4e47f3a63c Extracting [==================================================>]     161B/161B
E            b1088b603224 Extracting [==================================================>]     449B/449B
E            b1088b603224 Extracting [==================================================>]     449B/449B
E            b1088b603224 Pull complete 
E            2b4e47f3a63c Pull complete 
E            2b4e47f3a63c Pull complete 
E            2b4e47f3a63c Pull complete 
E            2b4e47f3a63c Pull complete 
E            4b6889cc4ccf Extracting [==================================================>]  1.467kB/1.467kB
E            4b6889cc4ccf Extracting [==================================================>]  1.467kB/1.467kB
E            f7ab9c8a4309 Extracting [==================================================>]  4.663kB/4.663kB
E            f7ab9c8a4309 Extracting [==================================================>]  4.663kB/4.663kB
E            f7ab9c8a4309 Extracting [==================================================>]  4.663kB/4.663kB
E            f7ab9c8a4309 Extracting [==================================================>]  4.663kB/4.663kB
E            f7ab9c8a4309 Extracting [==================================================>]  4.663kB/4.663kB
E            f7ab9c8a4309 Extracting [==================================================>]  4.663kB/4.663kB
E            f7ab9c8a4309 Extracting [==================================================>]  4.663kB/4.663kB
E            f7ab9c8a4309 Extracting [==================================================>]  4.663kB/4.663kB
E            4b6889cc4ccf Pull complete 
E            f7ab9c8a4309 Pull complete 
E            f7ab9c8a4309 Pull complete 
E            f7ab9c8a4309 Pull complete 
E            f7ab9c8a4309 Pull complete 
E            716226367eab Extracting [==================================================>]  1.227kB/1.227kB
E            716226367eab Extracting [==================================================>]  1.227kB/1.227kB
E            0df7f72e7206 Extracting [==================================================>]     986B/986B
E            0df7f72e7206 Extracting [==================================================>]     986B/986B
E            0df7f72e7206 Extracting [==================================================>]     986B/986B
E            0df7f72e7206 Extracting [==================================================>]     986B/986B
E            0df7f72e7206 Extracting [==================================================>]     986B/986B
E            0df7f72e7206 Extracting [==================================================>]     986B/986B
E            0df7f72e7206 Extracting [==================================================>]     986B/986B
E            0df7f72e7206 Extracting [==================================================>]     986B/986B
E            716226367eab Pull complete 
E            0df7f72e7206 Pull complete 
E            0df7f72e7206 Pull complete 
E            0df7f72e7206 Pull complete 
E            0df7f72e7206 Pull complete 
E            e1ec4c9faf57 Extracting [>                                                  ]  196.6kB/16.45MB
E            e1ec4c9faf57 Extracting [>                                                  ]  196.6kB/16.45MB
E            e1ec4c9faf57 Extracting [>                                                  ]  196.6kB/16.45MB
E            e1ec4c9faf57 Extracting [>                                                  ]  196.6kB/16.45MB
E            sftp_public_host Pulled 
E            46c8804bab5c Downloading [=======================================>           ]  111.5MB/142.4MB
E            23bcf05950ba Downloading [========>                                          ]  245.8MB/1.464GB
E            23bcf05950ba Downloading [========>                                          ]  245.8MB/1.464GB
E            23bcf05950ba Downloading [========>                                          ]  245.8MB/1.464GB
E            23bcf05950ba Downloading [========>                                          ]  245.8MB/1.464GB
E            e1ec4c9faf57 Extracting [=======================>                           ]  7.864MB/16.45MB
E            e1ec4c9faf57 Extracting [=======================>                           ]  7.864MB/16.45MB
E            e1ec4c9faf57 Extracting [=======================>                           ]  7.864MB/16.45MB
E            e1ec4c9faf57 Extracting [=======================>                           ]  7.864MB/16.45MB
E            46c8804bab5c Downloading [========================================>          ]  114.2MB/142.4MB
E            23bcf05950ba Downloading [========>                                          ]  258.1MB/1.464GB
E            23bcf05950ba Downloading [========>                                          ]  258.1MB/1.464GB
E            23bcf05950ba Downloading [========>                                          ]  258.1MB/1.464GB
E            23bcf05950ba Downloading [========>                                          ]  258.1MB/1.464GB
E            e1ec4c9faf57 Extracting [===============================================>   ]  15.73MB/16.45MB
E            e1ec4c9faf57 Extracting [===============================================>   ]  15.73MB/16.45MB
E            e1ec4c9faf57 Extracting [===============================================>   ]  15.73MB/16.45MB
E            e1ec4c9faf57 Extracting [===============================================>   ]  15.73MB/16.45MB
E            e1ec4c9faf57 Extracting [==================================================>]  16.45MB/16.45MB
E            e1ec4c9faf57 Extracting [==================================================>]  16.45MB/16.45MB
E            e1ec4c9faf57 Extracting [==================================================>]  16.45MB/16.45MB
E            e1ec4c9faf57 Extracting [==================================================>]  16.45MB/16.45MB
E            46c8804bab5c Downloading [=========================================>         ]  117.4MB/142.4MB
E            23bcf05950ba Downloading [=========>                                         ]  268.2MB/1.464GB
E            23bcf05950ba Downloading [=========>                                         ]  268.2MB/1.464GB
E            23bcf05950ba Downloading [=========>                                         ]  268.2MB/1.464GB
E            23bcf05950ba Downloading [=========>                                         ]  268.2MB/1.464GB
E            e1ec4c9faf57 Pull complete 
E            e1ec4c9faf57 Pull complete 
E            e1ec4c9faf57 Pull complete 
E            e1ec4c9faf57 Pull complete 
E            46c8804bab5c Downloading [==========================================>        ]  122.2MB/142.4MB
E            b266498bb690 Extracting [>                                                  ]  557.1kB/131.9MB
E            b266498bb690 Extracting [>                                                  ]  557.1kB/131.9MB
E            b266498bb690 Extracting [>                                                  ]  557.1kB/131.9MB
E            b266498bb690 Extracting [>                                                  ]  557.1kB/131.9MB
E            23bcf05950ba Downloading [=========>                                         ]  273.6MB/1.464GB
E            23bcf05950ba Downloading [=========>                                         ]  273.6MB/1.464GB
E            23bcf05950ba Downloading [=========>                                         ]  273.6MB/1.464GB
E            23bcf05950ba Downloading [=========>                                         ]  273.6MB/1.464GB
E            b266498bb690 Extracting [=======>                                           ]  20.05MB/131.9MB
E            b266498bb690 Extracting [=======>                                           ]  20.05MB/131.9MB
E            b266498bb690 Extracting [=======>                                           ]  20.05MB/131.9MB
E            b266498bb690 Extracting [=======>                                           ]  20.05MB/131.9MB
E            46c8804bab5c Downloading [============================================>      ]    127MB/142.4MB
E            23bcf05950ba Downloading [=========>                                         ]  278.9MB/1.464GB
E            23bcf05950ba Downloading [=========>                                         ]  278.9MB/1.464GB
E            23bcf05950ba Downloading [=========>                                         ]  278.9MB/1.464GB
E            23bcf05950ba Downloading [=========>                                         ]  278.9MB/1.464GB
E            b266498bb690 Extracting [===============>                                   ]  40.67MB/131.9MB
E            b266498bb690 Extracting [===============>                                   ]  40.67MB/131.9MB
E            b266498bb690 Extracting [===============>                                   ]  40.67MB/131.9MB
E            b266498bb690 Extracting [===============>                                   ]  40.67MB/131.9MB
E            23bcf05950ba Downloading [=========>                                         ]    288MB/1.464GB
E            23bcf05950ba Downloading [=========>                                         ]    288MB/1.464GB
E            23bcf05950ba Downloading [=========>                                         ]    288MB/1.464GB
E            23bcf05950ba Downloading [=========>                                         ]    288MB/1.464GB
E            46c8804bab5c Downloading [=============================================>     ]  128.6MB/142.4MB
E            b266498bb690 Extracting [=======================>                           ]  61.28MB/131.9MB
E            b266498bb690 Extracting [=======================>                           ]  61.28MB/131.9MB
E            b266498bb690 Extracting [=======================>                           ]  61.28MB/131.9MB
E            b266498bb690 Extracting [=======================>                           ]  61.28MB/131.9MB
E            23bcf05950ba Downloading [==========>                                        ]  296.1MB/1.464GB
E            23bcf05950ba Downloading [==========>                                        ]  296.1MB/1.464GB
E            23bcf05950ba Downloading [==========>                                        ]  296.1MB/1.464GB
E            23bcf05950ba Downloading [==========>                                        ]  296.1MB/1.464GB
E            46c8804bab5c Downloading [==============================================>    ]  131.3MB/142.4MB
E            b266498bb690 Extracting [=============================>                     ]   79.1MB/131.9MB
E            b266498bb690 Extracting [=============================>                     ]   79.1MB/131.9MB
E            b266498bb690 Extracting [=============================>                     ]   79.1MB/131.9MB
E            b266498bb690 Extracting [=============================>                     ]   79.1MB/131.9MB
E            23bcf05950ba Downloading [==========>                                        ]  306.2MB/1.464GB
E            23bcf05950ba Downloading [==========>                                        ]  306.2MB/1.464GB
E            23bcf05950ba Downloading [==========>                                        ]  306.2MB/1.464GB
E            23bcf05950ba Downloading [==========>                                        ]  306.2MB/1.464GB
E            46c8804bab5c Downloading [===============================================>   ]  134.5MB/142.4MB
E            b266498bb690 Extracting [===================================>               ]   94.7MB/131.9MB
E            b266498bb690 Extracting [===================================>               ]   94.7MB/131.9MB
E            b266498bb690 Extracting [===================================>               ]   94.7MB/131.9MB
E            b266498bb690 Extracting [===================================>               ]   94.7MB/131.9MB
E            23bcf05950ba Downloading [==========>                                        ]  315.9MB/1.464GB
E            23bcf05950ba Downloading [==========>                                        ]  315.9MB/1.464GB
E            23bcf05950ba Downloading [==========>                                        ]  315.9MB/1.464GB
E            23bcf05950ba Downloading [==========>                                        ]  315.9MB/1.464GB
E            46c8804bab5c Downloading [=================================================> ]  142.1MB/142.4MB
E            46c8804bab5c Verifying Checksum 
E            46c8804bab5c Download complete 
E            46c8804bab5c Extracting [>                                                  ]  557.1kB/142.4MB
E            b266498bb690 Extracting [==========================================>        ]  111.4MB/131.9MB
E            b266498bb690 Extracting [==========================================>        ]  111.4MB/131.9MB
E            b266498bb690 Extracting [==========================================>        ]  111.4MB/131.9MB
E            b266498bb690 Extracting [==========================================>        ]  111.4MB/131.9MB
E            23bcf05950ba Downloading [===========>                                       ]  322.3MB/1.464GB
E            23bcf05950ba Downloading [===========>                                       ]  322.3MB/1.464GB
E            23bcf05950ba Downloading [===========>                                       ]  322.3MB/1.464GB
E            23bcf05950ba Downloading [===========>                                       ]  322.3MB/1.464GB
E            46c8804bab5c Extracting [>                                                  ]  2.785MB/142.4MB
E            b266498bb690 Extracting [===============================================>   ]  126.5MB/131.9MB
E            b266498bb690 Extracting [===============================================>   ]  126.5MB/131.9MB
E            b266498bb690 Extracting [===============================================>   ]  126.5MB/131.9MB
E            b266498bb690 Extracting [===============================================>   ]  126.5MB/131.9MB
E            b266498bb690 Extracting [==================================================>]  131.9MB/131.9MB
E            b266498bb690 Extracting [==================================================>]  131.9MB/131.9MB
E            b266498bb690 Extracting [==================================================>]  131.9MB/131.9MB
E            b266498bb690 Extracting [==================================================>]  131.9MB/131.9MB
E            23bcf05950ba Downloading [===========>                                       ]  330.9MB/1.464GB
E            23bcf05950ba Downloading [===========>                                       ]  330.9MB/1.464GB
E            23bcf05950ba Downloading [===========>                                       ]  330.9MB/1.464GB
E            23bcf05950ba Downloading [===========>                                       ]  330.9MB/1.464GB
E            46c8804bab5c Extracting [===>                                               ]  8.913MB/142.4MB
E            23bcf05950ba Downloading [===========>                                       ]  337.8MB/1.464GB
E            23bcf05950ba Downloading [===========>                                       ]  337.8MB/1.464GB
E            23bcf05950ba Downloading [===========>                                       ]  337.8MB/1.464GB
E            23bcf05950ba Downloading [===========>                                       ]  337.8MB/1.464GB
E            46c8804bab5c Extracting [===>                                               ]  10.58MB/142.4MB
E            23bcf05950ba Downloading [===========>                                       ]  345.3MB/1.464GB
E            23bcf05950ba Downloading [===========>                                       ]  345.3MB/1.464GB
E            23bcf05950ba Downloading [===========>                                       ]  345.3MB/1.464GB
E            23bcf05950ba Downloading [===========>                                       ]  345.3MB/1.464GB
E            46c8804bab5c Extracting [====>                                              ]  13.93MB/142.4MB
E            b266498bb690 Pull complete 
E            b266498bb690 Pull complete 
E            b266498bb690 Pull complete 
E            b266498bb690 Pull complete 
E            23bcf05950ba Downloading [============>                                      ]  354.4MB/1.464GB
E            23bcf05950ba Downloading [============>                                      ]  354.4MB/1.464GB
E            23bcf05950ba Downloading [============>                                      ]  354.4MB/1.464GB
E            23bcf05950ba Downloading [============>                                      ]  354.4MB/1.464GB
E            46c8804bab5c Extracting [=======>                                           ]  22.28MB/142.4MB
E            23bcf05950ba Downloading [============>                                      ]  363.5MB/1.464GB
E            23bcf05950ba Downloading [============>                                      ]  363.5MB/1.464GB
E            23bcf05950ba Downloading [============>                                      ]  363.5MB/1.464GB
E            23bcf05950ba Downloading [============>                                      ]  363.5MB/1.464GB
E            46c8804bab5c Extracting [==========>                                        ]   31.2MB/142.4MB
E            23bcf05950ba Downloading [============>                                      ]  373.7MB/1.464GB
E            23bcf05950ba Downloading [============>                                      ]  373.7MB/1.464GB
E            23bcf05950ba Downloading [============>                                      ]  373.7MB/1.464GB
E            23bcf05950ba Downloading [============>                                      ]  373.7MB/1.464GB
E            46c8804bab5c Extracting [=============>                                     ]  38.44MB/142.4MB
E            23bcf05950ba Downloading [=============>                                     ]  385.5MB/1.464GB
E            23bcf05950ba Downloading [=============>                                     ]  385.5MB/1.464GB
E            23bcf05950ba Downloading [=============>                                     ]  385.5MB/1.464GB
E            23bcf05950ba Downloading [=============>                                     ]  385.5MB/1.464GB
E            46c8804bab5c Extracting [================>                                  ]  45.68MB/142.4MB
E            23bcf05950ba Downloading [=============>                                     ]  397.3MB/1.464GB
E            23bcf05950ba Downloading [=============>                                     ]  397.3MB/1.464GB
E            23bcf05950ba Downloading [=============>                                     ]  397.3MB/1.464GB
E            23bcf05950ba Downloading [=============>                                     ]  397.3MB/1.464GB
E            46c8804bab5c Extracting [==================>                                ]  53.48MB/142.4MB
E            23bcf05950ba Downloading [=============>                                     ]  408.1MB/1.464GB
E            23bcf05950ba Downloading [=============>                                     ]  408.1MB/1.464GB
E            23bcf05950ba Downloading [=============>                                     ]  408.1MB/1.464GB
E            23bcf05950ba Downloading [=============>                                     ]  408.1MB/1.464GB
E            46c8804bab5c Extracting [====================>                              ]  57.93MB/142.4MB
E            23bcf05950ba Downloading [==============>                                    ]  418.8MB/1.464GB
E            23bcf05950ba Downloading [==============>                                    ]  418.8MB/1.464GB
E            23bcf05950ba Downloading [==============>                                    ]  418.8MB/1.464GB
E            23bcf05950ba Downloading [==============>                                    ]  418.8MB/1.464GB
E            46c8804bab5c Extracting [====================>                              ]  58.49MB/142.4MB
E            23bcf05950ba Downloading [==============>                                    ]    429MB/1.464GB
E            23bcf05950ba Downloading [==============>                                    ]    429MB/1.464GB
E            23bcf05950ba Downloading [==============>                                    ]    429MB/1.464GB
E            23bcf05950ba Downloading [==============>                                    ]    429MB/1.464GB
E            23bcf05950ba Downloading [==============>                                    ]    437MB/1.464GB
E            23bcf05950ba Downloading [==============>                                    ]    437MB/1.464GB
E            23bcf05950ba Downloading [==============>                                    ]    437MB/1.464GB
E            23bcf05950ba Downloading [==============>                                    ]    437MB/1.464GB
E            46c8804bab5c Extracting [====================>                              ]  59.05MB/142.4MB
E            23bcf05950ba Downloading [===============>                                   ]  447.2MB/1.464GB
E            23bcf05950ba Downloading [===============>                                   ]  447.2MB/1.464GB
E            23bcf05950ba Downloading [===============>                                   ]  447.2MB/1.464GB
E            23bcf05950ba Downloading [===============>                                   ]  447.2MB/1.464GB
E            46c8804bab5c Extracting [=====================>                             ]  60.16MB/142.4MB
E            23bcf05950ba Downloading [===============>                                   ]  460.6MB/1.464GB
E            23bcf05950ba Downloading [===============>                                   ]  460.6MB/1.464GB
E            23bcf05950ba Downloading [===============>                                   ]  460.6MB/1.464GB
E            23bcf05950ba Downloading [===============>                                   ]  460.6MB/1.464GB
E            46c8804bab5c Extracting [===========================>                       ]  77.99MB/142.4MB
E            23bcf05950ba Downloading [================>                                  ]  472.4MB/1.464GB
E            23bcf05950ba Downloading [================>                                  ]  472.4MB/1.464GB
E            23bcf05950ba Downloading [================>                                  ]  472.4MB/1.464GB
E            23bcf05950ba Downloading [================>                                  ]  472.4MB/1.464GB
E            46c8804bab5c Extracting [==============================>                    ]  86.34MB/142.4MB
E            23bcf05950ba Downloading [================>                                  ]    488MB/1.464GB
E            23bcf05950ba Downloading [================>                                  ]    488MB/1.464GB
E            23bcf05950ba Downloading [================>                                  ]    488MB/1.464GB
E            23bcf05950ba Downloading [================>                                  ]    488MB/1.464GB
E            46c8804bab5c Extracting [=================================>                 ]  95.81MB/142.4MB
E            23bcf05950ba Downloading [================>                                  ]  493.9MB/1.464GB
E            23bcf05950ba Downloading [================>                                  ]  493.9MB/1.464GB
E            23bcf05950ba Downloading [================>                                  ]  493.9MB/1.464GB
E            23bcf05950ba Downloading [================>                                  ]  493.9MB/1.464GB
E            46c8804bab5c Extracting [===================================>               ]  100.3MB/142.4MB
E            23bcf05950ba Downloading [=================>                                 ]  502.5MB/1.464GB
E            23bcf05950ba Downloading [=================>                                 ]  502.5MB/1.464GB
E            23bcf05950ba Downloading [=================>                                 ]  502.5MB/1.464GB
E            23bcf05950ba Downloading [=================>                                 ]  502.5MB/1.464GB
E            46c8804bab5c Extracting [===================================>               ]  101.9MB/142.4MB
E            23bcf05950ba Downloading [=================>                                 ]  514.2MB/1.464GB
E            23bcf05950ba Downloading [=================>                                 ]  514.2MB/1.464GB
E            23bcf05950ba Downloading [=================>                                 ]  514.2MB/1.464GB
E            23bcf05950ba Downloading [=================>                                 ]  514.2MB/1.464GB
E            23bcf05950ba Downloading [==================>                                ]  528.1MB/1.464GB
E            23bcf05950ba Downloading [==================>                                ]  528.1MB/1.464GB
E            23bcf05950ba Downloading [==================>                                ]  528.1MB/1.464GB
E            23bcf05950ba Downloading [==================>                                ]  528.1MB/1.464GB
E            46c8804bab5c Extracting [====================================>              ]  103.6MB/142.4MB
E            23bcf05950ba Downloading [==================>                                ]  537.3MB/1.464GB
E            23bcf05950ba Downloading [==================>                                ]  537.3MB/1.464GB
E            23bcf05950ba Downloading [==================>                                ]  537.3MB/1.464GB
E            23bcf05950ba Downloading [==================>                                ]  537.3MB/1.464GB
E            23bcf05950ba Downloading [==================>                                ]  545.3MB/1.464GB
E            23bcf05950ba Downloading [==================>                                ]  545.3MB/1.464GB
E            23bcf05950ba Downloading [==================>                                ]  545.3MB/1.464GB
E            23bcf05950ba Downloading [==================>                                ]  545.3MB/1.464GB
E            46c8804bab5c Extracting [=====================================>             ]  106.4MB/142.4MB
E            23bcf05950ba Downloading [==================>                                ]  553.3MB/1.464GB
E            23bcf05950ba Downloading [==================>                                ]  553.3MB/1.464GB
E            23bcf05950ba Downloading [==================>                                ]  553.3MB/1.464GB
E            23bcf05950ba Downloading [==================>                                ]  553.3MB/1.464GB
E            46c8804bab5c Extracting [=======================================>           ]    112MB/142.4MB
E            23bcf05950ba Downloading [===================>                               ]  563.5MB/1.464GB
E            23bcf05950ba Downloading [===================>                               ]  563.5MB/1.464GB
E            23bcf05950ba Downloading [===================>                               ]  563.5MB/1.464GB
E            23bcf05950ba Downloading [===================>                               ]  563.5MB/1.464GB
E            46c8804bab5c Extracting [========================================>          ]  115.3MB/142.4MB
E            23bcf05950ba Downloading [===================>                               ]  575.2MB/1.464GB
E            23bcf05950ba Downloading [===================>                               ]  575.2MB/1.464GB
E            23bcf05950ba Downloading [===================>                               ]  575.2MB/1.464GB
E            23bcf05950ba Downloading [===================>                               ]  575.2MB/1.464GB
E            46c8804bab5c Extracting [=========================================>         ]  118.7MB/142.4MB
E            23bcf05950ba Downloading [====================>                              ]  590.8MB/1.464GB
E            23bcf05950ba Downloading [====================>                              ]  590.8MB/1.464GB
E            23bcf05950ba Downloading [====================>                              ]  590.8MB/1.464GB
E            23bcf05950ba Downloading [====================>                              ]  590.8MB/1.464GB
E            46c8804bab5c Extracting [===========================================>       ]  124.2MB/142.4MB
E            23bcf05950ba Downloading [====================>                              ]  598.8MB/1.464GB
E            23bcf05950ba Downloading [====================>                              ]  598.8MB/1.464GB
E            23bcf05950ba Downloading [====================>                              ]  598.8MB/1.464GB
E            23bcf05950ba Downloading [====================>                              ]  598.8MB/1.464GB
E            23bcf05950ba Downloading [====================>                              ]  608.5MB/1.464GB
E            23bcf05950ba Downloading [====================>                              ]  608.5MB/1.464GB
E            23bcf05950ba Downloading [====================>                              ]  608.5MB/1.464GB
E            23bcf05950ba Downloading [====================>                              ]  608.5MB/1.464GB
E            23bcf05950ba Downloading [=====================>                             ]  625.1MB/1.464GB
E            23bcf05950ba Downloading [=====================>                             ]  625.1MB/1.464GB
E            23bcf05950ba Downloading [=====================>                             ]  625.1MB/1.464GB
E            23bcf05950ba Downloading [=====================>                             ]  625.1MB/1.464GB
E            23bcf05950ba Downloading [=====================>                             ]  640.7MB/1.464GB
E            23bcf05950ba Downloading [=====================>                             ]  640.7MB/1.464GB
E            23bcf05950ba Downloading [=====================>                             ]  640.7MB/1.464GB
E            23bcf05950ba Downloading [=====================>                             ]  640.7MB/1.464GB
E            46c8804bab5c Extracting [============================================>      ]  127.6MB/142.4MB
E            23bcf05950ba Downloading [======================>                            ]  657.8MB/1.464GB
E            23bcf05950ba Downloading [======================>                            ]  657.8MB/1.464GB
E            23bcf05950ba Downloading [======================>                            ]  657.8MB/1.464GB
E            23bcf05950ba Downloading [======================>                            ]  657.8MB/1.464GB
E            46c8804bab5c Extracting [============================================>      ]  128.1MB/142.4MB
E            23bcf05950ba Downloading [======================>                            ]  668.1MB/1.464GB
E            23bcf05950ba Downloading [======================>                            ]  668.1MB/1.464GB
E            23bcf05950ba Downloading [======================>                            ]  668.1MB/1.464GB
E            23bcf05950ba Downloading [======================>                            ]  668.1MB/1.464GB
E            46c8804bab5c Extracting [=============================================>     ]  130.4MB/142.4MB
E            23bcf05950ba Downloading [=======================>                           ]  677.7MB/1.464GB
E            23bcf05950ba Downloading [=======================>                           ]  677.7MB/1.464GB
E            23bcf05950ba Downloading [=======================>                           ]  677.7MB/1.464GB
E            23bcf05950ba Downloading [=======================>                           ]  677.7MB/1.464GB
E            23bcf05950ba Downloading [=======================>                           ]  689.5MB/1.464GB
E            23bcf05950ba Downloading [=======================>                           ]  689.5MB/1.464GB
E            23bcf05950ba Downloading [=======================>                           ]  689.5MB/1.464GB
E            23bcf05950ba Downloading [=======================>                           ]  689.5MB/1.464GB
E            46c8804bab5c Extracting [==============================================>    ]    132MB/142.4MB
E            23bcf05950ba Downloading [=======================>                           ]  700.7MB/1.464GB
E            23bcf05950ba Downloading [=======================>                           ]  700.7MB/1.464GB
E            23bcf05950ba Downloading [=======================>                           ]  700.7MB/1.464GB
E            23bcf05950ba Downloading [=======================>                           ]  700.7MB/1.464GB
E            46c8804bab5c Extracting [================================================>  ]  137.6MB/142.4MB
E            23bcf05950ba Downloading [========================>                          ]    721MB/1.464GB
E            23bcf05950ba Downloading [========================>                          ]    721MB/1.464GB
E            23bcf05950ba Downloading [========================>                          ]    721MB/1.464GB
E            23bcf05950ba Downloading [========================>                          ]    721MB/1.464GB
E            46c8804bab5c Extracting [==================================================>]  142.4MB/142.4MB
E            46c8804bab5c Pull complete 
E            nifi_zookeeper Pulled 
E            23bcf05950ba Downloading [=========================>                         ]  733.4MB/1.464GB
E            23bcf05950ba Downloading [=========================>                         ]  733.4MB/1.464GB
E            23bcf05950ba Downloading [=========================>                         ]  733.4MB/1.464GB
E            23bcf05950ba Downloading [=========================>                         ]  733.4MB/1.464GB
E            23bcf05950ba Downloading [=========================>                         ]  747.3MB/1.464GB
E            23bcf05950ba Downloading [=========================>                         ]  747.3MB/1.464GB
E            23bcf05950ba Downloading [=========================>                         ]  747.3MB/1.464GB
E            23bcf05950ba Downloading [=========================>                         ]  747.3MB/1.464GB
E            23bcf05950ba Downloading [==========================>                        ]  763.9MB/1.464GB
E            23bcf05950ba Downloading [==========================>                        ]  763.9MB/1.464GB
E            23bcf05950ba Downloading [==========================>                        ]  763.9MB/1.464GB
E            23bcf05950ba Downloading [==========================>                        ]  763.9MB/1.464GB
E            23bcf05950ba Downloading [==========================>                        ]  782.2MB/1.464GB
E            23bcf05950ba Downloading [==========================>                        ]  782.2MB/1.464GB
E            23bcf05950ba Downloading [==========================>                        ]  782.2MB/1.464GB
E            23bcf05950ba Downloading [==========================>                        ]  782.2MB/1.464GB
E            23bcf05950ba Downloading [===========================>                       ]  801.4MB/1.464GB
E            23bcf05950ba Downloading [===========================>                       ]  801.4MB/1.464GB
E            23bcf05950ba Downloading [===========================>                       ]  801.4MB/1.464GB
E            23bcf05950ba Downloading [===========================>                       ]  801.4MB/1.464GB
E            23bcf05950ba Downloading [===========================>                       ]  819.1MB/1.464GB
E            23bcf05950ba Downloading [===========================>                       ]  819.1MB/1.464GB
E            23bcf05950ba Downloading [===========================>                       ]  819.1MB/1.464GB
E            23bcf05950ba Downloading [===========================>                       ]  819.1MB/1.464GB
E            23bcf05950ba Downloading [============================>                      ]  835.2MB/1.464GB
E            23bcf05950ba Downloading [============================>                      ]  835.2MB/1.464GB
E            23bcf05950ba Downloading [============================>                      ]  835.2MB/1.464GB
E            23bcf05950ba Downloading [============================>                      ]  835.2MB/1.464GB
E            23bcf05950ba Downloading [=============================>                     ]  852.4MB/1.464GB
E            23bcf05950ba Downloading [=============================>                     ]  852.4MB/1.464GB
E            23bcf05950ba Downloading [=============================>                     ]  852.4MB/1.464GB
E            23bcf05950ba Downloading [=============================>                     ]  852.4MB/1.464GB
E            23bcf05950ba Downloading [=============================>                     ]  861.5MB/1.464GB
E            23bcf05950ba Downloading [=============================>                     ]  861.5MB/1.464GB
E            23bcf05950ba Downloading [=============================>                     ]  861.5MB/1.464GB
E            23bcf05950ba Downloading [=============================>                     ]  861.5MB/1.464GB
E            23bcf05950ba Downloading [=============================>                     ]    877MB/1.464GB
E            23bcf05950ba Downloading [=============================>                     ]    877MB/1.464GB
E            23bcf05950ba Downloading [=============================>                     ]    877MB/1.464GB
E            23bcf05950ba Downloading [=============================>                     ]    877MB/1.464GB
E            23bcf05950ba Downloading [==============================>                    ]  886.1MB/1.464GB
E            23bcf05950ba Downloading [==============================>                    ]  886.1MB/1.464GB
E            23bcf05950ba Downloading [==============================>                    ]  886.1MB/1.464GB
E            23bcf05950ba Downloading [==============================>                    ]  886.1MB/1.464GB
E            23bcf05950ba Downloading [==============================>                    ]  902.2MB/1.464GB
E            23bcf05950ba Downloading [==============================>                    ]  902.2MB/1.464GB
E            23bcf05950ba Downloading [==============================>                    ]  902.2MB/1.464GB
E            23bcf05950ba Downloading [==============================>                    ]  902.2MB/1.464GB
E            23bcf05950ba Downloading [===============================>                   ]  911.3MB/1.464GB
E            23bcf05950ba Downloading [===============================>                   ]  911.3MB/1.464GB
E            23bcf05950ba Downloading [===============================>                   ]  911.3MB/1.464GB
E            23bcf05950ba Downloading [===============================>                   ]  911.3MB/1.464GB
E            23bcf05950ba Downloading [===============================>                   ]  916.7MB/1.464GB
E            23bcf05950ba Downloading [===============================>                   ]  916.7MB/1.464GB
E            23bcf05950ba Downloading [===============================>                   ]  916.7MB/1.464GB
E            23bcf05950ba Downloading [===============================>                   ]  916.7MB/1.464GB
E            23bcf05950ba Downloading [===============================>                   ]  932.8MB/1.464GB
E            23bcf05950ba Downloading [===============================>                   ]  932.8MB/1.464GB
E            23bcf05950ba Downloading [===============================>                   ]  932.8MB/1.464GB
E            23bcf05950ba Downloading [===============================>                   ]  932.8MB/1.464GB
E            23bcf05950ba Downloading [================================>                  ]  949.9MB/1.464GB
E            23bcf05950ba Downloading [================================>                  ]  949.9MB/1.464GB
E            23bcf05950ba Downloading [================================>                  ]  949.9MB/1.464GB
E            23bcf05950ba Downloading [================================>                  ]  949.9MB/1.464GB
E            23bcf05950ba Downloading [================================>                  ]  964.4MB/1.464GB
E            23bcf05950ba Downloading [================================>                  ]  964.4MB/1.464GB
E            23bcf05950ba Downloading [================================>                  ]  964.4MB/1.464GB
E            23bcf05950ba Downloading [================================>                  ]  964.4MB/1.464GB
E            23bcf05950ba Downloading [=================================>                 ]  977.8MB/1.464GB
E            23bcf05950ba Downloading [=================================>                 ]  977.8MB/1.464GB
E            23bcf05950ba Downloading [=================================>                 ]  977.8MB/1.464GB
E            23bcf05950ba Downloading [=================================>                 ]  977.8MB/1.464GB
E            23bcf05950ba Downloading [=================================>                 ]  981.5MB/1.464GB
E            23bcf05950ba Downloading [=================================>                 ]  981.5MB/1.464GB
E            23bcf05950ba Downloading [=================================>                 ]  981.5MB/1.464GB
E            23bcf05950ba Downloading [=================================>                 ]  981.5MB/1.464GB
E            23bcf05950ba Downloading [=================================>                 ]  991.2MB/1.464GB
E            23bcf05950ba Downloading [=================================>                 ]  991.2MB/1.464GB
E            23bcf05950ba Downloading [=================================>                 ]  991.2MB/1.464GB
E            23bcf05950ba Downloading [=================================>                 ]  991.2MB/1.464GB
E            23bcf05950ba Downloading [==================================>                ]  998.2MB/1.464GB
E            23bcf05950ba Downloading [==================================>                ]  998.2MB/1.464GB
E            23bcf05950ba Downloading [==================================>                ]  998.2MB/1.464GB
E            23bcf05950ba Downloading [==================================>                ]  998.2MB/1.464GB
E            23bcf05950ba Downloading [==================================>                ]  1.008GB/1.464GB
E            23bcf05950ba Downloading [==================================>                ]  1.008GB/1.464GB
E            23bcf05950ba Downloading [==================================>                ]  1.008GB/1.464GB
E            23bcf05950ba Downloading [==================================>                ]  1.008GB/1.464GB
E            23bcf05950ba Downloading [==================================>                ]  1.018GB/1.464GB
E            23bcf05950ba Downloading [==================================>                ]  1.018GB/1.464GB
E            23bcf05950ba Downloading [==================================>                ]  1.018GB/1.464GB
E            23bcf05950ba Downloading [==================================>                ]  1.018GB/1.464GB
E            23bcf05950ba Downloading [==================================>                ]  1.024GB/1.464GB
E            23bcf05950ba Downloading [==================================>                ]  1.024GB/1.464GB
E            23bcf05950ba Downloading [==================================>                ]  1.024GB/1.464GB
E            23bcf05950ba Downloading [==================================>                ]  1.024GB/1.464GB
E            23bcf05950ba Downloading [===================================>               ]   1.03GB/1.464GB
E            23bcf05950ba Downloading [===================================>               ]   1.03GB/1.464GB
E            23bcf05950ba Downloading [===================================>               ]   1.03GB/1.464GB
E            23bcf05950ba Downloading [===================================>               ]   1.03GB/1.464GB
E            23bcf05950ba Downloading [===================================>               ]  1.046GB/1.464GB
E            23bcf05950ba Downloading [===================================>               ]  1.046GB/1.464GB
E            23bcf05950ba Downloading [===================================>               ]  1.046GB/1.464GB
E            23bcf05950ba Downloading [===================================>               ]  1.046GB/1.464GB
E            23bcf05950ba Downloading [====================================>              ]  1.063GB/1.464GB
E            23bcf05950ba Downloading [====================================>              ]  1.063GB/1.464GB
E            23bcf05950ba Downloading [====================================>              ]  1.063GB/1.464GB
E            23bcf05950ba Downloading [====================================>              ]  1.063GB/1.464GB
E            23bcf05950ba Downloading [====================================>              ]  1.069GB/1.464GB
E            23bcf05950ba Downloading [====================================>              ]  1.069GB/1.464GB
E            23bcf05950ba Downloading [====================================>              ]  1.069GB/1.464GB
E            23bcf05950ba Downloading [====================================>              ]  1.069GB/1.464GB
E            23bcf05950ba Downloading [====================================>              ]  1.076GB/1.464GB
E            23bcf05950ba Downloading [====================================>              ]  1.076GB/1.464GB
E            23bcf05950ba Downloading [====================================>              ]  1.076GB/1.464GB
E            23bcf05950ba Downloading [====================================>              ]  1.076GB/1.464GB
E            23bcf05950ba Downloading [=====================================>             ]  1.089GB/1.464GB
E            23bcf05950ba Downloading [=====================================>             ]  1.089GB/1.464GB
E            23bcf05950ba Downloading [=====================================>             ]  1.089GB/1.464GB
E            23bcf05950ba Downloading [=====================================>             ]  1.089GB/1.464GB
E            23bcf05950ba Downloading [=====================================>             ]  1.104GB/1.464GB
E            23bcf05950ba Downloading [=====================================>             ]  1.104GB/1.464GB
E            23bcf05950ba Downloading [=====================================>             ]  1.104GB/1.464GB
E            23bcf05950ba Downloading [=====================================>             ]  1.104GB/1.464GB
E            23bcf05950ba Downloading [======================================>            ]  1.117GB/1.464GB
E            23bcf05950ba Downloading [======================================>            ]  1.117GB/1.464GB
E            23bcf05950ba Downloading [======================================>            ]  1.117GB/1.464GB
E            23bcf05950ba Downloading [======================================>            ]  1.117GB/1.464GB
E            23bcf05950ba Downloading [======================================>            ]  1.134GB/1.464GB
E            23bcf05950ba Downloading [======================================>            ]  1.134GB/1.464GB
E            23bcf05950ba Downloading [======================================>            ]  1.134GB/1.464GB
E            23bcf05950ba Downloading [======================================>            ]  1.134GB/1.464GB
E            23bcf05950ba Downloading [=======================================>           ]  1.155GB/1.464GB
E            23bcf05950ba Downloading [=======================================>           ]  1.155GB/1.464GB
E            23bcf05950ba Downloading [=======================================>           ]  1.155GB/1.464GB
E            23bcf05950ba Downloading [=======================================>           ]  1.155GB/1.464GB
E            23bcf05950ba Downloading [========================================>          ]  1.172GB/1.464GB
E            23bcf05950ba Downloading [========================================>          ]  1.172GB/1.464GB
E            23bcf05950ba Downloading [========================================>          ]  1.172GB/1.464GB
E            23bcf05950ba Downloading [========================================>          ]  1.172GB/1.464GB
E            23bcf05950ba Downloading [========================================>          ]  1.183GB/1.464GB
E            23bcf05950ba Downloading [========================================>          ]  1.183GB/1.464GB
E            23bcf05950ba Downloading [========================================>          ]  1.183GB/1.464GB
E            23bcf05950ba Downloading [========================================>          ]  1.183GB/1.464GB
E            23bcf05950ba Downloading [=========================================>         ]  1.202GB/1.464GB
E            23bcf05950ba Downloading [=========================================>         ]  1.202GB/1.464GB
E            23bcf05950ba Downloading [=========================================>         ]  1.202GB/1.464GB
E            23bcf05950ba Downloading [=========================================>         ]  1.202GB/1.464GB
E            23bcf05950ba Downloading [=========================================>         ]  1.206GB/1.464GB
E            23bcf05950ba Downloading [=========================================>         ]  1.206GB/1.464GB
E            23bcf05950ba Downloading [=========================================>         ]  1.206GB/1.464GB
E            23bcf05950ba Downloading [=========================================>         ]  1.206GB/1.464GB
E            23bcf05950ba Downloading [=========================================>         ]  1.214GB/1.464GB
E            23bcf05950ba Downloading [=========================================>         ]  1.214GB/1.464GB
E            23bcf05950ba Downloading [=========================================>         ]  1.214GB/1.464GB
E            23bcf05950ba Downloading [=========================================>         ]  1.214GB/1.464GB
E            23bcf05950ba Downloading [=========================================>         ]  1.218GB/1.464GB
E            23bcf05950ba Downloading [=========================================>         ]  1.218GB/1.464GB
E            23bcf05950ba Downloading [=========================================>         ]  1.218GB/1.464GB
E            23bcf05950ba Downloading [=========================================>         ]  1.218GB/1.464GB
E            23bcf05950ba Downloading [==========================================>        ]  1.239GB/1.464GB
E            23bcf05950ba Downloading [==========================================>        ]  1.239GB/1.464GB
E            23bcf05950ba Downloading [==========================================>        ]  1.239GB/1.464GB
E            23bcf05950ba Downloading [==========================================>        ]  1.239GB/1.464GB
E            23bcf05950ba Downloading [==========================================>        ]  1.252GB/1.464GB
E            23bcf05950ba Downloading [==========================================>        ]  1.252GB/1.464GB
E            23bcf05950ba Downloading [==========================================>        ]  1.252GB/1.464GB
E            23bcf05950ba Downloading [==========================================>        ]  1.252GB/1.464GB
E            23bcf05950ba Downloading [===========================================>       ]  1.261GB/1.464GB
E            23bcf05950ba Downloading [===========================================>       ]  1.261GB/1.464GB
E            23bcf05950ba Downloading [===========================================>       ]  1.261GB/1.464GB
E            23bcf05950ba Downloading [===========================================>       ]  1.261GB/1.464GB
E            23bcf05950ba Downloading [===========================================>       ]  1.276GB/1.464GB
E            23bcf05950ba Downloading [===========================================>       ]  1.276GB/1.464GB
E            23bcf05950ba Downloading [===========================================>       ]  1.276GB/1.464GB
E            23bcf05950ba Downloading [===========================================>       ]  1.276GB/1.464GB
E            23bcf05950ba Downloading [===========================================>       ]  1.286GB/1.464GB
E            23bcf05950ba Downloading [===========================================>       ]  1.286GB/1.464GB
E            23bcf05950ba Downloading [===========================================>       ]  1.286GB/1.464GB
E            23bcf05950ba Downloading [===========================================>       ]  1.286GB/1.464GB
E            23bcf05950ba Downloading [============================================>      ]  1.299GB/1.464GB
E            23bcf05950ba Downloading [============================================>      ]  1.299GB/1.464GB
E            23bcf05950ba Downloading [============================================>      ]  1.299GB/1.464GB
E            23bcf05950ba Downloading [============================================>      ]  1.299GB/1.464GB
E            23bcf05950ba Downloading [============================================>      ]   1.31GB/1.464GB
E            23bcf05950ba Downloading [============================================>      ]   1.31GB/1.464GB
E            23bcf05950ba Downloading [============================================>      ]   1.31GB/1.464GB
E            23bcf05950ba Downloading [============================================>      ]   1.31GB/1.464GB
E            23bcf05950ba Downloading [=============================================>     ]   1.32GB/1.464GB
E            23bcf05950ba Downloading [=============================================>     ]   1.32GB/1.464GB
E            23bcf05950ba Downloading [=============================================>     ]   1.32GB/1.464GB
E            23bcf05950ba Downloading [=============================================>     ]   1.32GB/1.464GB
E            23bcf05950ba Downloading [=============================================>     ]  1.331GB/1.464GB
E            23bcf05950ba Downloading [=============================================>     ]  1.331GB/1.464GB
E            23bcf05950ba Downloading [=============================================>     ]  1.331GB/1.464GB
E            23bcf05950ba Downloading [=============================================>     ]  1.331GB/1.464GB
E            23bcf05950ba Downloading [=============================================>     ]  1.339GB/1.464GB
E            23bcf05950ba Downloading [=============================================>     ]  1.339GB/1.464GB
E            23bcf05950ba Downloading [=============================================>     ]  1.339GB/1.464GB
E            23bcf05950ba Downloading [=============================================>     ]  1.339GB/1.464GB
E            23bcf05950ba Downloading [==============================================>    ]  1.352GB/1.464GB
E            23bcf05950ba Downloading [==============================================>    ]  1.352GB/1.464GB
E            23bcf05950ba Downloading [==============================================>    ]  1.352GB/1.464GB
E            23bcf05950ba Downloading [==============================================>    ]  1.352GB/1.464GB
E            23bcf05950ba Downloading [==============================================>    ]  1.365GB/1.464GB
E            23bcf05950ba Downloading [==============================================>    ]  1.365GB/1.464GB
E            23bcf05950ba Downloading [==============================================>    ]  1.365GB/1.464GB
E            23bcf05950ba Downloading [==============================================>    ]  1.365GB/1.464GB
E            23bcf05950ba Downloading [===============================================>   ]  1.379GB/1.464GB
E            23bcf05950ba Downloading [===============================================>   ]  1.379GB/1.464GB
E            23bcf05950ba Downloading [===============================================>   ]  1.379GB/1.464GB
E            23bcf05950ba Downloading [===============================================>   ]  1.379GB/1.464GB
E            23bcf05950ba Downloading [===============================================>   ]  1.384GB/1.464GB
E            23bcf05950ba Downloading [===============================================>   ]  1.384GB/1.464GB
E            23bcf05950ba Downloading [===============================================>   ]  1.384GB/1.464GB
E            23bcf05950ba Downloading [===============================================>   ]  1.384GB/1.464GB
E            23bcf05950ba Downloading [===============================================>   ]  1.392GB/1.464GB
E            23bcf05950ba Downloading [===============================================>   ]  1.392GB/1.464GB
E            23bcf05950ba Downloading [===============================================>   ]  1.392GB/1.464GB
E            23bcf05950ba Downloading [===============================================>   ]  1.392GB/1.464GB
E            23bcf05950ba Downloading [================================================>  ]  1.407GB/1.464GB
E            23bcf05950ba Downloading [================================================>  ]  1.407GB/1.464GB
E            23bcf05950ba Downloading [================================================>  ]  1.407GB/1.464GB
E            23bcf05950ba Downloading [================================================>  ]  1.407GB/1.464GB
E            23bcf05950ba Downloading [================================================>  ]  1.424GB/1.464GB
E            23bcf05950ba Downloading [================================================>  ]  1.424GB/1.464GB
E            23bcf05950ba Downloading [================================================>  ]  1.424GB/1.464GB
E            23bcf05950ba Downloading [================================================>  ]  1.424GB/1.464GB
E            23bcf05950ba Downloading [================================================>  ]  1.429GB/1.464GB
E            23bcf05950ba Downloading [================================================>  ]  1.429GB/1.464GB
E            23bcf05950ba Downloading [================================================>  ]  1.429GB/1.464GB
E            23bcf05950ba Downloading [================================================>  ]  1.429GB/1.464GB
E            23bcf05950ba Downloading [================================================>  ]  1.431GB/1.464GB
E            23bcf05950ba Downloading [================================================>  ]  1.431GB/1.464GB
E            23bcf05950ba Downloading [================================================>  ]  1.431GB/1.464GB
E            23bcf05950ba Downloading [================================================>  ]  1.431GB/1.464GB
E            23bcf05950ba Downloading [=================================================> ]  1.441GB/1.464GB
E            23bcf05950ba Downloading [=================================================> ]  1.441GB/1.464GB
E            23bcf05950ba Downloading [=================================================> ]  1.441GB/1.464GB
E            23bcf05950ba Downloading [=================================================> ]  1.441GB/1.464GB
E            23bcf05950ba Downloading [=================================================> ]  1.455GB/1.464GB
E            23bcf05950ba Downloading [=================================================> ]  1.455GB/1.464GB
E            23bcf05950ba Downloading [=================================================> ]  1.455GB/1.464GB
E            23bcf05950ba Downloading [=================================================> ]  1.455GB/1.464GB
E            23bcf05950ba Verifying Checksum 
E            23bcf05950ba Downloading [==================================================>]  1.464GB/1.464GB
E            23bcf05950ba Download complete 
E            23bcf05950ba Downloading [==================================================>]  1.464GB/1.464GB
E            23bcf05950ba Download complete 
E            23bcf05950ba Download complete 
E            23bcf05950ba Downloading [==================================================>]  1.464GB/1.464GB
E            23bcf05950ba Download complete 
E            23bcf05950ba Extracting [>                                                  ]  557.1kB/1.464GB
E            23bcf05950ba Extracting [>                                                  ]  557.1kB/1.464GB
E            23bcf05950ba Extracting [>                                                  ]  557.1kB/1.464GB
E            23bcf05950ba Extracting [>                                                  ]  557.1kB/1.464GB
E            23bcf05950ba Extracting [>                                                  ]  14.48MB/1.464GB
E            23bcf05950ba Extracting [>                                                  ]  14.48MB/1.464GB
E            23bcf05950ba Extracting [>                                                  ]  14.48MB/1.464GB
E            23bcf05950ba Extracting [>                                                  ]  14.48MB/1.464GB
E            23bcf05950ba Extracting [=>                                                 ]  30.64MB/1.464GB
E            23bcf05950ba Extracting [=>                                                 ]  30.64MB/1.464GB
E            23bcf05950ba Extracting [=>                                                 ]  30.64MB/1.464GB
E            23bcf05950ba Extracting [=>                                                 ]  30.64MB/1.464GB
E            23bcf05950ba Extracting [=>                                                 ]  48.46MB/1.464GB
E            23bcf05950ba Extracting [=>                                                 ]  48.46MB/1.464GB
E            23bcf05950ba Extracting [=>                                                 ]  48.46MB/1.464GB
E            23bcf05950ba Extracting [=>                                                 ]  48.46MB/1.464GB
E            23bcf05950ba Extracting [==>                                                ]  72.42MB/1.464GB
E            23bcf05950ba Extracting [==>                                                ]  72.42MB/1.464GB
E            23bcf05950ba Extracting [==>                                                ]  72.42MB/1.464GB
E            23bcf05950ba Extracting [==>                                                ]  72.42MB/1.464GB
E            23bcf05950ba Extracting [===>                                               ]  99.16MB/1.464GB
E            23bcf05950ba Extracting [===>                                               ]  99.16MB/1.464GB
E            23bcf05950ba Extracting [===>                                               ]  99.16MB/1.464GB
E            23bcf05950ba Extracting [===>                                               ]  99.16MB/1.464GB
E            23bcf05950ba Extracting [====>                                              ]  129.2MB/1.464GB
E            23bcf05950ba Extracting [====>                                              ]  129.2MB/1.464GB
E            23bcf05950ba Extracting [====>                                              ]  129.2MB/1.464GB
E            23bcf05950ba Extracting [====>                                              ]  129.2MB/1.464GB
E            23bcf05950ba Extracting [=====>                                             ]  160.4MB/1.464GB
E            23bcf05950ba Extracting [=====>                                             ]  160.4MB/1.464GB
E            23bcf05950ba Extracting [=====>                                             ]  160.4MB/1.464GB
E            23bcf05950ba Extracting [=====>                                             ]  160.4MB/1.464GB
E            23bcf05950ba Extracting [======>                                            ]  190.5MB/1.464GB
E            23bcf05950ba Extracting [======>                                            ]  190.5MB/1.464GB
E            23bcf05950ba Extracting [======>                                            ]  190.5MB/1.464GB
E            23bcf05950ba Extracting [======>                                            ]  190.5MB/1.464GB
E            23bcf05950ba Extracting [=======>                                           ]  220.6MB/1.464GB
E            23bcf05950ba Extracting [=======>                                           ]  220.6MB/1.464GB
E            23bcf05950ba Extracting [=======>                                           ]  220.6MB/1.464GB
E            23bcf05950ba Extracting [=======>                                           ]  220.6MB/1.464GB
E            23bcf05950ba Extracting [========>                                          ]  251.2MB/1.464GB
E            23bcf05950ba Extracting [========>                                          ]  251.2MB/1.464GB
E            23bcf05950ba Extracting [========>                                          ]  251.2MB/1.464GB
E            23bcf05950ba Extracting [========>                                          ]  251.2MB/1.464GB
E            23bcf05950ba Extracting [=========>                                         ]  281.3MB/1.464GB
E            23bcf05950ba Extracting [=========>                                         ]  281.3MB/1.464GB
E            23bcf05950ba Extracting [=========>                                         ]  281.3MB/1.464GB
E            23bcf05950ba Extracting [=========>                                         ]  281.3MB/1.464GB
E            23bcf05950ba Extracting [==========>                                        ]  310.3MB/1.464GB
E            23bcf05950ba Extracting [==========>                                        ]  310.3MB/1.464GB
E            23bcf05950ba Extracting [==========>                                        ]  310.3MB/1.464GB
E            23bcf05950ba Extracting [==========>                                        ]  310.3MB/1.464GB
E            23bcf05950ba Extracting [===========>                                       ]  340.9MB/1.464GB
E            23bcf05950ba Extracting [===========>                                       ]  340.9MB/1.464GB
E            23bcf05950ba Extracting [===========>                                       ]  340.9MB/1.464GB
E            23bcf05950ba Extracting [===========>                                       ]  340.9MB/1.464GB
E            23bcf05950ba Extracting [============>                                      ]    371MB/1.464GB
E            23bcf05950ba Extracting [============>                                      ]    371MB/1.464GB
E            23bcf05950ba Extracting [============>                                      ]    371MB/1.464GB
E            23bcf05950ba Extracting [============>                                      ]    371MB/1.464GB
E            23bcf05950ba Extracting [=============>                                     ]  399.4MB/1.464GB
E            23bcf05950ba Extracting [=============>                                     ]  399.4MB/1.464GB
E            23bcf05950ba Extracting [=============>                                     ]  399.4MB/1.464GB
E            23bcf05950ba Extracting [=============>                                     ]  399.4MB/1.464GB
E            23bcf05950ba Extracting [==============>                                    ]  428.4MB/1.464GB
E            23bcf05950ba Extracting [==============>                                    ]  428.4MB/1.464GB
E            23bcf05950ba Extracting [==============>                                    ]  428.4MB/1.464GB
E            23bcf05950ba Extracting [==============>                                    ]  428.4MB/1.464GB
E            23bcf05950ba Extracting [===============>                                   ]  459.6MB/1.464GB
E            23bcf05950ba Extracting [===============>                                   ]  459.6MB/1.464GB
E            23bcf05950ba Extracting [===============>                                   ]  459.6MB/1.464GB
E            23bcf05950ba Extracting [===============>                                   ]  459.6MB/1.464GB
E            23bcf05950ba Extracting [================>                                  ]  491.9MB/1.464GB
E            23bcf05950ba Extracting [================>                                  ]  491.9MB/1.464GB
E            23bcf05950ba Extracting [================>                                  ]  491.9MB/1.464GB
E            23bcf05950ba Extracting [================>                                  ]  491.9MB/1.464GB
E            23bcf05950ba Extracting [=================>                                 ]  522.5MB/1.464GB
E            23bcf05950ba Extracting [=================>                                 ]  522.5MB/1.464GB
E            23bcf05950ba Extracting [=================>                                 ]  522.5MB/1.464GB
E            23bcf05950ba Extracting [=================>                                 ]  522.5MB/1.464GB
E            23bcf05950ba Extracting [==================>                                ]  550.9MB/1.464GB
E            23bcf05950ba Extracting [==================>                                ]  550.9MB/1.464GB
E            23bcf05950ba Extracting [==================>                                ]  550.9MB/1.464GB
E            23bcf05950ba Extracting [==================>                                ]  550.9MB/1.464GB
E            23bcf05950ba Extracting [===================>                               ]  581.6MB/1.464GB
E            23bcf05950ba Extracting [===================>                               ]  581.6MB/1.464GB
E            23bcf05950ba Extracting [===================>                               ]  581.6MB/1.464GB
E            23bcf05950ba Extracting [===================>                               ]  581.6MB/1.464GB
E            23bcf05950ba Extracting [====================>                              ]  610.5MB/1.464GB
E            23bcf05950ba Extracting [====================>                              ]  610.5MB/1.464GB
E            23bcf05950ba Extracting [====================>                              ]  610.5MB/1.464GB
E            23bcf05950ba Extracting [====================>                              ]  610.5MB/1.464GB
E            23bcf05950ba Extracting [=====================>                             ]  640.1MB/1.464GB
E            23bcf05950ba Extracting [=====================>                             ]  640.1MB/1.464GB
E            23bcf05950ba Extracting [=====================>                             ]  640.1MB/1.464GB
E            23bcf05950ba Extracting [=====================>                             ]  640.1MB/1.464GB
E            23bcf05950ba Extracting [======================>                            ]  670.1MB/1.464GB
E            23bcf05950ba Extracting [======================>                            ]  670.1MB/1.464GB
E            23bcf05950ba Extracting [======================>                            ]  670.1MB/1.464GB
E            23bcf05950ba Extracting [======================>                            ]  670.1MB/1.464GB
E            23bcf05950ba Extracting [=======================>                           ]  702.4MB/1.464GB
E            23bcf05950ba Extracting [=======================>                           ]  702.4MB/1.464GB
E            23bcf05950ba Extracting [=======================>                           ]  702.4MB/1.464GB
E            23bcf05950ba Extracting [=======================>                           ]  702.4MB/1.464GB
E            23bcf05950ba Extracting [=========================>                         ]  733.6MB/1.464GB
E            23bcf05950ba Extracting [=========================>                         ]  733.6MB/1.464GB
E            23bcf05950ba Extracting [=========================>                         ]  733.6MB/1.464GB
E            23bcf05950ba Extracting [=========================>                         ]  733.6MB/1.464GB
E            23bcf05950ba Extracting [==========================>                        ]  764.3MB/1.464GB
E            23bcf05950ba Extracting [==========================>                        ]  764.3MB/1.464GB
E            23bcf05950ba Extracting [==========================>                        ]  764.3MB/1.464GB
E            23bcf05950ba Extracting [==========================>                        ]  764.3MB/1.464GB
E            23bcf05950ba Extracting [===========================>                       ]  794.9MB/1.464GB
E            23bcf05950ba Extracting [===========================>                       ]  794.9MB/1.464GB
E            23bcf05950ba Extracting [===========================>                       ]  794.9MB/1.464GB
E            23bcf05950ba Extracting [===========================>                       ]  794.9MB/1.464GB
E            23bcf05950ba Extracting [============================>                      ]  823.9MB/1.464GB
E            23bcf05950ba Extracting [============================>                      ]  823.9MB/1.464GB
E            23bcf05950ba Extracting [============================>                      ]  823.9MB/1.464GB
E            23bcf05950ba Extracting [============================>                      ]  823.9MB/1.464GB
E            23bcf05950ba Extracting [=============================>                     ]  853.4MB/1.464GB
E            23bcf05950ba Extracting [=============================>                     ]  853.4MB/1.464GB
E            23bcf05950ba Extracting [=============================>                     ]  853.4MB/1.464GB
E            23bcf05950ba Extracting [=============================>                     ]  853.4MB/1.464GB
E            23bcf05950ba Extracting [==============================>                    ]  882.9MB/1.464GB
E            23bcf05950ba Extracting [==============================>                    ]  882.9MB/1.464GB
E            23bcf05950ba Extracting [==============================>                    ]  882.9MB/1.464GB
E            23bcf05950ba Extracting [==============================>                    ]  882.9MB/1.464GB
E            23bcf05950ba Extracting [===============================>                   ]    913MB/1.464GB
E            23bcf05950ba Extracting [===============================>                   ]    913MB/1.464GB
E            23bcf05950ba Extracting [===============================>                   ]    913MB/1.464GB
E            23bcf05950ba Extracting [===============================>                   ]    913MB/1.464GB
E            23bcf05950ba Extracting [================================>                  ]  941.4MB/1.464GB
E            23bcf05950ba Extracting [================================>                  ]  941.4MB/1.464GB
E            23bcf05950ba Extracting [================================>                  ]  941.4MB/1.464GB
E            23bcf05950ba Extracting [================================>                  ]  941.4MB/1.464GB
E            23bcf05950ba Extracting [=================================>                 ]  970.9MB/1.464GB
E            23bcf05950ba Extracting [=================================>                 ]  970.9MB/1.464GB
E            23bcf05950ba Extracting [=================================>                 ]  970.9MB/1.464GB
E            23bcf05950ba Extracting [=================================>                 ]  970.9MB/1.464GB
E            23bcf05950ba Extracting [==================================>                ]  1.001GB/1.464GB
E            23bcf05950ba Extracting [==================================>                ]  1.001GB/1.464GB
E            23bcf05950ba Extracting [==================================>                ]  1.001GB/1.464GB
E            23bcf05950ba Extracting [==================================>                ]  1.001GB/1.464GB
E            23bcf05950ba Extracting [===================================>               ]  1.031GB/1.464GB
E            23bcf05950ba Extracting [===================================>               ]  1.031GB/1.464GB
E            23bcf05950ba Extracting [===================================>               ]  1.031GB/1.464GB
E            23bcf05950ba Extracting [===================================>               ]  1.031GB/1.464GB
E            23bcf05950ba Extracting [====================================>              ]  1.063GB/1.464GB
E            23bcf05950ba Extracting [====================================>              ]  1.063GB/1.464GB
E            23bcf05950ba Extracting [====================================>              ]  1.063GB/1.464GB
E            23bcf05950ba Extracting [====================================>              ]  1.063GB/1.464GB
E            23bcf05950ba Extracting [=====================================>             ]  1.094GB/1.464GB
E            23bcf05950ba Extracting [=====================================>             ]  1.094GB/1.464GB
E            23bcf05950ba Extracting [=====================================>             ]  1.094GB/1.464GB
E            23bcf05950ba Extracting [=====================================>             ]  1.094GB/1.464GB
E            23bcf05950ba Extracting [======================================>            ]  1.122GB/1.464GB
E            23bcf05950ba Extracting [======================================>            ]  1.122GB/1.464GB
E            23bcf05950ba Extracting [======================================>            ]  1.122GB/1.464GB
E            23bcf05950ba Extracting [======================================>            ]  1.122GB/1.464GB
E            23bcf05950ba Extracting [=======================================>           ]  1.153GB/1.464GB
E            23bcf05950ba Extracting [=======================================>           ]  1.153GB/1.464GB
E            23bcf05950ba Extracting [=======================================>           ]  1.153GB/1.464GB
E            23bcf05950ba Extracting [=======================================>           ]  1.153GB/1.464GB
E            23bcf05950ba Extracting [========================================>          ]  1.184GB/1.464GB
E            23bcf05950ba Extracting [========================================>          ]  1.184GB/1.464GB
E            23bcf05950ba Extracting [========================================>          ]  1.184GB/1.464GB
E            23bcf05950ba Extracting [========================================>          ]  1.184GB/1.464GB
E            23bcf05950ba Extracting [=========================================>         ]  1.213GB/1.464GB
E            23bcf05950ba Extracting [=========================================>         ]  1.213GB/1.464GB
E            23bcf05950ba Extracting [=========================================>         ]  1.213GB/1.464GB
E            23bcf05950ba Extracting [=========================================>         ]  1.213GB/1.464GB
E            23bcf05950ba Extracting [==========================================>        ]  1.244GB/1.464GB
E            23bcf05950ba Extracting [==========================================>        ]  1.244GB/1.464GB
E            23bcf05950ba Extracting [==========================================>        ]  1.244GB/1.464GB
E            23bcf05950ba Extracting [==========================================>        ]  1.244GB/1.464GB
E            23bcf05950ba Extracting [===========================================>       ]  1.276GB/1.464GB
E            23bcf05950ba Extracting [===========================================>       ]  1.276GB/1.464GB
E            23bcf05950ba Extracting [===========================================>       ]  1.276GB/1.464GB
E            23bcf05950ba Extracting [===========================================>       ]  1.276GB/1.464GB
E            23bcf05950ba Extracting [============================================>      ]  1.306GB/1.464GB
E            23bcf05950ba Extracting [============================================>      ]  1.306GB/1.464GB
E            23bcf05950ba Extracting [============================================>      ]  1.306GB/1.464GB
E            23bcf05950ba Extracting [============================================>      ]  1.306GB/1.464GB
E            23bcf05950ba Extracting [=============================================>     ]  1.336GB/1.464GB
E            23bcf05950ba Extracting [=============================================>     ]  1.336GB/1.464GB
E            23bcf05950ba Extracting [=============================================>     ]  1.336GB/1.464GB
E            23bcf05950ba Extracting [=============================================>     ]  1.336GB/1.464GB
E            23bcf05950ba Extracting [==============================================>    ]  1.366GB/1.464GB
E            23bcf05950ba Extracting [==============================================>    ]  1.366GB/1.464GB
E            23bcf05950ba Extracting [==============================================>    ]  1.366GB/1.464GB
E            23bcf05950ba Extracting [==============================================>    ]  1.366GB/1.464GB
E            23bcf05950ba Extracting [===============================================>   ]  1.396GB/1.464GB
E            23bcf05950ba Extracting [===============================================>   ]  1.396GB/1.464GB
E            23bcf05950ba Extracting [===============================================>   ]  1.396GB/1.464GB
E            23bcf05950ba Extracting [===============================================>   ]  1.396GB/1.464GB
E            23bcf05950ba Extracting [================================================>  ]   1.42GB/1.464GB
E            23bcf05950ba Extracting [================================================>  ]   1.42GB/1.464GB
E            23bcf05950ba Extracting [================================================>  ]   1.42GB/1.464GB
E            23bcf05950ba Extracting [================================================>  ]   1.42GB/1.464GB
E            23bcf05950ba Extracting [=================================================> ]  1.442GB/1.464GB
E            23bcf05950ba Extracting [=================================================> ]  1.442GB/1.464GB
E            23bcf05950ba Extracting [=================================================> ]  1.442GB/1.464GB
E            23bcf05950ba Extracting [=================================================> ]  1.442GB/1.464GB
E            23bcf05950ba Extracting [=================================================> ]  1.462GB/1.464GB
E            23bcf05950ba Extracting [=================================================> ]  1.462GB/1.464GB
E            23bcf05950ba Extracting [=================================================> ]  1.462GB/1.464GB
E            23bcf05950ba Extracting [=================================================> ]  1.462GB/1.464GB
E            23bcf05950ba Extracting [==================================================>]  1.464GB/1.464GB
E            23bcf05950ba Extracting [==================================================>]  1.464GB/1.464GB
E            23bcf05950ba Extracting [==================================================>]  1.464GB/1.464GB
E            23bcf05950ba Extracting [==================================================>]  1.464GB/1.464GB
E            23bcf05950ba Pull complete 
E            23bcf05950ba Pull complete 
E            23bcf05950ba Pull complete 
E            23bcf05950ba Pull complete 
E            6e56b7e91e85 Extracting [==================================================>]     220B/220B
E            6e56b7e91e85 Extracting [==================================================>]     220B/220B
E            6e56b7e91e85 Extracting [==================================================>]     220B/220B
E            6e56b7e91e85 Extracting [==================================================>]     220B/220B
E            6e56b7e91e85 Extracting [==================================================>]     220B/220B
E            6e56b7e91e85 Extracting [==================================================>]     220B/220B
E            6e56b7e91e85 Extracting [==================================================>]     220B/220B
E            6e56b7e91e85 Extracting [==================================================>]     220B/220B
E            6e56b7e91e85 Pull complete 
E            6e56b7e91e85 Pull complete 
E            6e56b7e91e85 Pull complete 
E            6e56b7e91e85 Pull complete 
E            4f4fb700ef54 Extracting [==================================================>]      32B/32B
E            4f4fb700ef54 Extracting [==================================================>]      32B/32B
E            4f4fb700ef54 Extracting [==================================================>]      32B/32B
E            4f4fb700ef54 Extracting [==================================================>]      32B/32B
E            4f4fb700ef54 Extracting [==================================================>]      32B/32B
E            4f4fb700ef54 Extracting [==================================================>]      32B/32B
E            4f4fb700ef54 Extracting [==================================================>]      32B/32B
E            4f4fb700ef54 Extracting [==================================================>]      32B/32B
E            4f4fb700ef54 Pull complete 
E            4f4fb700ef54 Pull complete 
E            4f4fb700ef54 Pull complete 
E            4f4fb700ef54 Pull complete 
E            nifi03 Pulled 
E            nifi01 Pulled 
E           fatal error: concurrent map writes
E           fatal error: concurrent map writes
E           
E           goroutine 55 [running]:
E           github..../v2/pkg/compose.(*composeService).pullRequiredImages.func1.1()
E           	github..../pkg/compose/pull.go:328 +0x236
E           golang..../x/sync/errgroup.(*Group).Go.func1()
E           	golang.org/x/sync@v0.13.0/errgroup/errgroup.go:79 +0x50
E           created by golang..../x/sync/errgroup.(*Group).Go in goroutine 51
E           	golang.org/x/sync@v0.13.0/errgroup/errgroup.go:76 +0x96
E           
E           goroutine 1 [semacquire]:
E           sync.runtime_Semacquire(0xc0008173f8?)
E           	runtime/sema.go:71 +0x25
E           sync.(*WaitGroup).Wait(0x25c5480?)
E           	sync/waitgroup.go:118 +0x48
E           golang..../x/sync/errgroup.(*Group).Wait(0xc0007ad1c0)
E           	golang.org/x/sync@v0.13.0/errgroup/errgroup.go:56 +0x25
E           github..../v2/pkg/progress.RunWithStatus({0x2ba9388, 0xc0007b8420}, 0xc000130120, 0xc00015af60, {0x27c8359, 0x7})
E           	github..../pkg/progress/writer.go:97 +0x225
E           github..../v2/pkg/progress.Run({0x2ba9388, 0xc0007b8420}, 0xc0007ad180, 0xc00015af60)
E           	github..../pkg/progress/writer.go:61 +0x85
E           github..../v2/pkg/compose.(*composeService).Up(0xc00013c8c0, {0x2ba9388, 0xc0007b8420}, _, {{0xc00081ab80, {0xc0001361c0, 0x0, 0x2}, 0x0, 0x0, ...}, ...})
E           	github..../pkg/compose/up.go:40 +0x213
E           github..../v2/cmd/compose.runUp({_, _}, {_, _}, {_, _}, {0x1, 0x0, {0x27c670c, 0x6}, ...}, ...)
E           	github..../cmd/compose/up.go:319 +0xb54
E           github..../v2/cmd/compose.upCommand.func2({0x2ba9388, 0xc0007b8420}, 0xc000822fc0, {0xc0001361c0, 0x0, 0x2})
E           	github..../cmd/compose/up.go:143 +0x29f
E           github..../v2/cmd/compose.upCommand.(*ProjectOptions).WithServices.func5({0x2ba93c0, 0xc00012fcc0}, {0xc0001361c0, 0x0, 0x2})
E           	github..../cmd/compose/compose.go:187 +0x22d
E           github..../v2/cmd/compose.upCommand.(*ProjectOptions).WithServices.Adapt.func7({0x2ba93c0?, 0xc00012fcc0?}, 0x2?, {0xc0001361c0?, 0x2b8dfe8?, 0x123077f?})
E           	github..../cmd/compose/compose.go:137 +0x30
E           github..../v2/cmd/compose.upCommand.(*ProjectOptions).WithServices.Adapt.AdaptCmd.func8(0xc00051c908, {0xc0001361c0, 0x0, 0x2})
E           	github..../cmd/compose/compose.go:121 +0x143
E           github..../cli/cli-plugins/plugin.RunPlugin.func1.1.2(0xc00051c908, {0xc0001361c0, 0x0, 0x2})
E           	github.com/docker/cli@v28.1.0+.../cli-plugins/plugin/plugin.go:65 +0x6c
E           github..../v2/cmd/cmdtrace.Setup.wrapRunE.func2(0xc00051c908?, {0xc0001361c0?, 0x0?, 0x2?})
E           	github..../cmd/cmdtrace/cmd_span.go:85 +0x63
E           github.com/spf13/cobra.(*Command).execute(0xc00051c908, {0xc00013e060, 0x2, 0x2})
E           	github.com/spf13/cobra@v1.9.1/command.go:1015 +0xa94
E           github.com/spf13/cobra.(*Command).ExecuteC(0xc0003daf08)
E           	github.com/spf13/cobra@v1.9.1/command.go:1148 +0x40c
E           github.com/spf13/cobra.(*Command).Execute(...)
E           	github.com/spf13/cobra@v1.9.1/command.go:1071
E           github..../cli/cli-plugins/plugin.RunPlugin(0xc000241540, 0xc00051c608, {{0x27c5150, 0x5}, {0x27cf09e, 0xb}, {0x2b790c8, 0x7}, {0x0, 0x0}, ...})
E           	github.com/docker/cli@v28.1.0+.../cli-plugins/plugin/plugin.go:80 +0x145
E           github..../cli/cli-plugins/plugin.Run(0x29213b0, {{0x27c5150, 0x5}, {0x27cf09e, 0xb}, {0x2b790c8, 0x7}, {0x0, 0x0}, {0x0, ...}})
E           	github.com/docker/cli@v28.1.0+.../cli-plugins/plugin/plugin.go:95 +0x105
E           main.pluginMain()
E           	github..../v2/cmd/main.go:38 +0xa5
E           main.main()
E           	github..../v2/cmd/main.go:98 +0x19c
E           
E           goroutine 9 [IO wait]:
E           internal/poll.runtime_pollWait(0x7fb5c1cb66b0, 0x72)
E           	runtime/netpoll.go:351 +0x85
E           internal/poll.(*pollDesc).wait(0xc00013e080?, 0xc000082fbf?, 0x0)
E           	internal/poll/fd_poll_runtime.go:84 +0x27
E           internal/poll.(*pollDesc).waitRead(...)
E           	internal/poll/fd_poll_runtime.go:89
E           internal/poll.(*FD).Read(0xc00013e080, {0xc000082fbf, 0x1, 0x1})
E           	internal/poll/fd_unix.go:165 +0x27a
E           net.(*netFD).Read(0xc00013e080, {0xc000082fbf?, 0x0?, 0x0?})
E           	net/fd_posix.go:55 +0x25
E           net.(*conn).Read(0xc0004b91b8, {0xc000082fbf?, 0x0?, 0x0?})
E           	net/net.go:189 +0x45
E           github..../cli/cli-plugins/socket.ConnectAndWait.func1()
E           	github.com/docker/cli@v28.1.0+.../cli-plugins/socket/socket.go:162 +0x45
E           created by github..../cli/cli-plugins/socket.ConnectAndWait in goroutine 1
E           	github.com/docker/cli@v28.1.0+.../cli-plugins/socket/socket.go:159 +0x118
E           
E           goroutine 13 [runnable]:
E           go.opentelemetry..../otel/sdk/trace.(*batchSpanProcessor).processQueue(0xc000452320)
E           	go.opentelemetry.io/otel/sdk@v1.34.0/trace/batch_span_processor.go:302 +0x114
E           go.opentelemetry..../otel/sdk/trace.NewBatchSpanProcessor.func1()
E           	go.opentelemetry.io/otel/sdk@v1.34.0/trace/batch_span_processor.go:117 +0x4e
E           created by go.opentelemetry..../otel/sdk/trace.NewBatchSpanProcessor in goroutine 1
E           	go.opentelemetry.io/otel/sdk@v1.34.0/trace/batch_span_processor.go:115 +0x2e5
E           
E           goroutine 49 [syscall]:
E           os/signal.signal_recv()
E           	runtime/sigqueue.go:152 +0x29
E           os/signal.loop()
E           	os/signal/signal_unix.go:23 +0x13
E           created by os/signal.Notify.func1.1 in goroutine 1
E           	os/signal/signal.go:151 +0x1f
E           
E           goroutine 15 [chan receive]:
E           github..../v2/cmd/compose.upCommand.AdaptCmd.func4.1()
E           	github..../cmd/compose/compose.go:115 +0x27
E           created by github..../v2/cmd/compose.upCommand.AdaptCmd.func4 in goroutine 1
E           	github..../cmd/compose/compose.go:114 +0x10a
E           
E           goroutine 16 [chan receive]:
E           github..../v2/cmd/compose.upCommand.(*ProjectOptions).WithServices.Adapt.AdaptCmd.func8.1()
E           	github..../cmd/compose/compose.go:115 +0x27
E           created by github..../v2/cmd/compose.upCommand.(*ProjectOptions).WithServices.Adapt.AdaptCmd.func8 in goroutine 1
E           	github..../cmd/compose/compose.go:114 +0x10a
E           
E           goroutine 35 [select]:
E           github..../v2/pkg/progress.(*plainWriter).Start(0xc000491740, {0x2ba8f50, 0x412eac0})
E           	github..../pkg/progress/plain.go:34 +0x67
E           github..../v2/pkg/progress.RunWithStatus.func1()
E           	github..../pkg/progress/writer.go:83 +0x2a
E           golang..../x/sync/errgroup.(*Group).Go.func1()
E           	golang.org/x/sync@v0.13.0/errgroup/errgroup.go:79 +0x50
E           created by golang..../x/sync/errgroup.(*Group).Go in goroutine 1
E           	golang.org/x/sync@v0.13.0/errgroup/errgroup.go:76 +0x96
E           
E           goroutine 36 [semacquire]:
E           sync.runtime_Semacquire(0xc000010708?)
E           	runtime/sema.go:71 +0x25
E           sync.(*WaitGroup).Wait(0x25c5480?)
E           	sync/waitgroup.go:118 +0x48
E           golang..../x/sync/errgroup.(*Group).Wait(0xc0003de800)
E           	golang.org/x/sync@v0.13.0/errgroup/errgroup.go:56 +0x25
E           github..../v2/pkg/progress.RunWithStatus({0x2ba9388, 0xc00039b3e0}, 0xc00066e710, 0xc00015af60, {0x27c8359, 0x7})
E           	github..../pkg/progress/writer.go:97 +0x225
E           github..../v2/pkg/progress.Run({0x2ba9388, 0xc00039b3e0}, 0xc00039b4d0, 0xc00015af60)
E           	github..../pkg/progress/writer.go:61 +0x85
E           github..../v2/pkg/compose.(*composeService).pullRequiredImages(0xc00013c8c0, {0x2ba9388, 0xc00039b3e0}, 0xc000822fc0, 0xc0005f4450, 0x0)
E           	github..../pkg/compose/pull.go:320 +0x2ef
E           github..../v2/pkg/compose.(*composeService).ensureImagesExists.func1({0x2ba9388?, 0xc00039b3e0?})
E           	github..../pkg/compose/build.go:278 +0x37
E           github..../v2/pkg/compose.(*composeService).ensureImagesExists.SpanWrapFunc.func3({0x2ba9388, 0xc0005f43f0})
E           	github..../internal/tracing/wrap.go:43 +0x13d
E           github..../v2/pkg/compose.(*composeService).ensureImagesExists(0xc00013c8c0, {0x2ba9388, 0xc0005f43f0}, 0xc000822fc0, 0xc00081ab80, 0x0)
E           	github..../pkg/compose/build.go:280 +0x29e
E           github..../v2/pkg/compose.(*composeService).create(0xc00013c8c0, {0x2ba9388, 0xc0005f43f0}, 0xc000822fc0, {0xc00081ab80, {0xc00081ad80, 0x6, 0x8}, 0x0, 0x0, ...})
E           	github..../pkg/compose/create.go:83 +0xdf
E           github..../v2/pkg/compose.(*composeService).Up.func1({0x2ba9388, 0xc0005f43f0})
E           	github..../pkg/compose/up.go:41 +0x85
E           github..../v2/pkg/compose.(*composeService).Up.SpanWrapFunc.func5({0x2ba9388, 0xc0005f43c0})
E           	github..../internal/tracing/wrap.go:43 +0x13d
E           github..../v2/pkg/progress.Run.func1({0x2ba9388?, 0xc0005f43c0?})
E           	github..../pkg/progress/writer.go:62 +0x22
E           github..../v2/pkg/progress.RunWithStatus.func2()
E           	github..../pkg/progress/writer.go:90 +0x70
E           golang..../x/sync/errgroup.(*Group).Go.func1()
E           	golang.org/x/sync@v0.13.0/errgroup/errgroup.go:79 +0x50
E           created by golang..../x/sync/errgroup.(*Group).Go in goroutine 1
E           	golang.org/x/sync@v0.13.0/errgroup/errgroup.go:76 +0x96
E           
E           goroutine 50 [select]:
E           github..../v2/pkg/progress.(*plainWriter).Start(0xc00079a0e0, {0x2ba8f50, 0x412eac0})
E           	github..../pkg/progress/plain.go:34 +0x67
E           github..../v2/pkg/progress.RunWithStatus.func1()
E           	github..../pkg/progress/writer.go:83 +0x2a
E           golang..../x/sync/errgroup.(*Group).Go.func1()
E           	golang.org/x/sync@v0.13.0/errgroup/errgroup.go:79 +0x50
E           created by golang..../x/sync/errgroup.(*Group).Go in goroutine 36
E           	golang.org/x/sync@v0.13.0/errgroup/errgroup.go:76 +0x96
E           
E           goroutine 23 [IO wait]:
E           internal/poll.runtime_pollWait(0x7fb5c1cb6020, 0x72)
E           	runtime/netpoll.go:351 +0x85
E           internal/poll.(*pollDesc).wait(0xc00013e380?, 0xc00082d000?, 0x0)
E           	internal/poll/fd_poll_runtime.go:84 +0x27
E           internal/poll.(*pollDesc).waitRead(...)
E           	internal/poll/fd_poll_runtime.go:89
E           internal/poll.(*FD).Read(0xc00013e380, {0xc00082d000, 0x1000, 0x1000})
E           	internal/poll/fd_unix.go:165 +0x27a
E           net.(*netFD).Read(0xc00013e380, {0xc00082d000?, 0x0?, 0x2b805a0?})
E           	net/fd_posix.go:55 +0x25
E           net.(*conn).Read(0xc0004b8070, {0xc00082d000?, 0x0?, 0x0?})
E           	net/net.go:189 +0x45
E           net/http.(*persistConn).Read(0xc0002c0120, {0xc00082d000?, 0x777f25?, 0x2379d40?})
E           	net/http/transport.go:2052 +0x4a
E           bufio.(*Reader).fill(0xc0005e83c0)
E           	bufio/bufio.go:110 +0x103
E           bufio.(*Reader).Peek(0xc0005e83c0, 0x1)
E           	bufio/bufio.go:148 +0x53
E           net/http.(*persistConn).readLoop(0xc0002c0120)
E           	net/http/transport.go:2205 +0x185
E           created by net/http.(*Transport).dialConn in goroutine 22
E           	net/http/transport.go:1874 +0x154f
E           
E           goroutine 66 [IO wait]:
E           internal/poll.runtime_pollWait(0x7fb5c1cb6480, 0x72)
E           	runtime/netpoll.go:351 +0x85
E           internal/poll.(*pollDesc).wait(0xc0003b0380?, 0xc000634000?, 0x0)
E           	internal/poll/fd_poll_runtime.go:84 +0x27
E           internal/poll.(*pollDesc).waitRead(...)
E           	internal/poll/fd_poll_runtime.go:89
E           internal/poll.(*FD).Read(0xc0003b0380, {0xc000634000, 0x1000, 0x1000})
E           	internal/poll/fd_unix.go:165 +0x27a
E           net.(*netFD).Read(0xc0003b0380, {0xc000634000?, 0x0?, 0x2b805a0?})
E           	net/fd_posix.go:55 +0x25
E           net.(*conn).Read(0xc000120030, {0xc000634000?, 0x0?, 0x0?})
E           	net/net.go:189 +0x45
E           net/http.(*persistConn).Read(0xc000152000, {0xc000634000?, 0x777f25?, 0x2379d40?})
E           	net/http/transport.go:2052 +0x4a
E           bufio.(*Reader).fill(0xc0000a83c0)
E           	bufio/bufio.go:110 +0x103
E           bufio.(*Reader).Peek(0xc0000a83c0, 0x1)
E           	bufio/bufio.go:148 +0x53
E           net/http.(*persistConn).readLoop(0xc000152000)
E           	net/http/transport.go:2205 +0x185
E           created by net/http.(*Transport).dialConn in goroutine 65
E           	net/http/transport.go:1874 +0x154f
E           
E           goroutine 51 [semacquire]:
E           sync.runtime_Semacquire(0x0?)
E           	runtime/sema.go:71 +0x25
E           sync.(*WaitGroup).Wait(0xc00039b410?)
E           	sync/waitgroup.go:118 +0x48
E           golang..../x/sync/errgroup.(*Group).Wait(0xc0003de8c0)
E           	golang.org/x/sync@v0.13.0/errgroup/errgroup.go:56 +0x25
E           github..../v2/pkg/compose.(*composeService).pullRequiredImages.func1({0x2ba9388, 0xc00039b500})
E           	github..../pkg/compose/pull.go:340 +0x39b
E           github..../v2/pkg/progress.Run.func1({0x2ba9388?, 0xc00039b500?})
E           	github..../pkg/progress/writer.go:62 +0x22
E           github..../v2/pkg/progress.RunWithStatus.func2()
E           	github..../pkg/progress/writer.go:90 +0x70
E           golang..../x/sync/errgroup.(*Group).Go.func1()
E           	golang.org/x/sync@v0.13.0/errgroup/errgroup.go:79 +0x50
E           created by golang..../x/sync/errgroup.(*Group).Go in goroutine 36
E           	golang.org/x/sync@v0.13.0/errgroup/errgroup.go:76 +0x96
E           
E           goroutine 67 [select]:
E           net/http.(*persistConn).writeLoop(0xc000152000)
E           	net/http/transport.go:2519 +0xe7
E           created by net/http.(*Transport).dialConn in goroutine 65
E           	net/http/transport.go:1875 +0x15a5
E           
E           goroutine 53 [IO wait]:
E           internal/poll.runtime_pollWait(0x7fb5c1cb6138, 0x72)
E           	runtime/netpoll.go:351 +0x85
E           internal/poll.(*pollDesc).wait(0xc00081af00?, 0xc000706000?, 0x0)
E           	internal/poll/fd_poll_runtime.go:84 +0x27
E           internal/poll.(*pollDesc).waitRead(...)
E           	internal/poll/fd_poll_runtime.go:89
E           internal/poll.(*FD).Read(0xc00081af00, {0xc000706000, 0x1000, 0x1000})
E           	internal/poll/fd_unix.go:165 +0x27a
E           net.(*netFD).Read(0xc00081af00, {0xc000706000?, 0x0?, 0x0?})
E           	net/fd_posix.go:55 +0x25
E           net.(*conn).Read(0xc00008b270, {0xc000706000?, 0xc000736430?, 0x4855cf?})
E           	net/net.go:189 +0x45
E           net/http.(*persistConn).Read(0xc000359e60, {0xc000706000?, 0x546135?, 0xc0001428e8?})
E           	net/http/transport.go:2052 +0x4a
E           bufio.(*Reader).fill(0xc000828660)
E           	bufio/bufio.go:110 +0x103
E           bufio.(*Reader).ReadSlice(0xc000828660, 0xa)
E           	bufio/bufio.go:376 +0x29
E           net/http/internal.readChunkLine(0xc0005f4b90?)
E           	.../http/internal/chunked.go:156 +0x1c
E           net/http/internal.(*chunkedReader).beginChunk(0xc0005f4b70)
E           	.../http/internal/chunked.go:49 +0x25
E           net/http/internal.(*chunkedReader).Read(0xc0005f4b70, {0xc0001c4602?, 0x0?, 0x0?})
E           	.../http/internal/chunked.go:125 +0x131
E           net/http.(*body).readLocked(0xc0007ad680, {0xc0001c4602?, 0xc0006b56c0?, 0x223ed20?})
E           	net/http/transfer.go:844 +0x3b
E           net/http.(*body).Read(0xb?, {0xc0001c4602?, 0xc0005f4db0?, 0xc0005f4de0?})
E           	net/http/transfer.go:836 +0x112
E           net/http.(*bodyEOFSignal).Read(0xc0007ad700, {0xc0001c4602, 0x5fe, 0x5fe})
E           	net/http/transport.go:2913 +0x13f
E           go.opentelemetry..../net/http/otelhttp.(*wrappedBody).Read(0xc0007ad940, {0xc0001c4602?, 0x545e1d?, 0x0?})
E           	go.opentelemetry..../net/http/otelhttp@v0.56.0/transport.go:229 +0x2d
E           encoding/json.(*Decoder).refill(0xc0001428c0)
E           	encoding/json/stream.go:165 +0x188
E           encoding/json.(*Decoder).readValue(0xc0001428c0)
E           	encoding/json/stream.go:140 +0x85
E           encoding/json.(*Decoder).Decode(0xc0001428c0, {0x235b6a0, 0xc0006b0d80})
E           	encoding/json/stream.go:63 +0x75
E           github..../v2/pkg/compose.(*composeService).pullServiceImage(_, {_, _}, {{0xc000357770, 0x5}, {0x0, 0x0, 0x0}, 0x0, 0x0, ...}, ...)
E           	github..../pkg/compose/pull.go:231 +0x4b0
E           github..../v2/pkg/compose.(*composeService).pullRequiredImages.func1.1()
E           	github..../pkg/compose/pull.go:327 +0x170
E           golang..../x/sync/errgroup.(*Group).Go.func1()
E           	golang.org/x/sync@v0.13.0/errgroup/errgroup.go:79 +0x50
E           created by golang..../x/sync/errgroup.(*Group).Go in goroutine 51
E           	golang.org/x/sync@v0.13.0/errgroup/errgroup.go:76 +0x96
E           
E           goroutine 56 [IO wait]:
E           internal/poll.runtime_pollWait(0x7fb5c1cb6250, 0x72)
E           	runtime/netpoll.go:351 +0x85
E           internal/poll.(*pollDesc).wait(0xc0003fa200?, 0xc0006e3000?, 0x0)
E           	internal/poll/fd_poll_runtime.go:84 +0x27
E           internal/poll.(*pollDesc).waitRead(...)
E           	internal/poll/fd_poll_runtime.go:89
E           internal/poll.(*FD).Read(0xc0003fa200, {0xc0006e3000, 0x1000, 0x1000})
E           	internal/poll/fd_unix.go:165 +0x27a
E           net.(*netFD).Read(0xc0003fa200, {0xc0006e3000?, 0x0?, 0x0?})
E           	net/fd_posix.go:55 +0x25
E           net.(*conn).Read(0xc0006f6010, {0xc0006e3000?, 0xc0006a6430?, 0x4855cf?})
E           	net/net.go:189 +0x45
E           net/http.(*persistConn).Read(0xc0002386c0, {0xc0006e3000?, 0x546135?, 0xc000142a28?})
E           	net/http/transport.go:2052 +0x4a
E           bufio.(*Reader).fill(0xc0004a1140)
E           	bufio/bufio.go:110 +0x103
E           bufio.(*Reader).ReadSlice(0xc0004a1140, 0xa)
E           	bufio/bufio.go:376 +0x29
E           net/http/internal.readChunkLine(0xc0005f4ec0?)
E           	.../http/internal/chunked.go:156 +0x1c
E           net/http/internal.(*chunkedReader).beginChunk(0xc0005f4ea0)
E           	.../http/internal/chunked.go:49 +0x25
E           net/http/internal.(*chunkedReader).Read(0xc0005f4ea0, {0xc0001c4c02?, 0x0?, 0x0?})
E           	.../http/internal/chunked.go:125 +0x131
E           net/http.(*body).readLocked(0xc0007ad980, {0xc0001c4c02?, 0xc0006b56c0?, 0x223ed20?})
E           	net/http/transfer.go:844 +0x3b
E           net/http.(*body).Read(0xb?, {0xc0001c4c02?, 0xc0005f4db0?, 0xc0005f4de0?})
E           	net/http/transfer.go:836 +0x112
E           net/http.(*bodyEOFSignal).Read(0xc0007ad9c0, {0xc0001c4c02, 0x5fe, 0x5fe})
E           	net/http/transport.go:2913 +0x13f
E           go.opentelemetry..../net/http/otelhttp.(*wrappedBody).Read(0xc0007ada80, {0xc0001c4c02?, 0x545e1d?, 0x0?})
E           	go.opentelemetry..../net/http/otelhttp@v0.56.0/transport.go:229 +0x2d
E           encoding/json.(*Decoder).refill(0xc000142a00)
E           	encoding/json/stream.go:165 +0x188
E           encoding/json.(*Decoder).readValue(0xc000142a00)
E           	encoding/json/stream.go:140 +0x85
E           encoding/json.(*Decoder).Decode(0xc000142a00, {0x235b6a0, 0xc0006b0bd0})
E           	encoding/json/stream.go:63 +0x75
E           github..../v2/pkg/compose.(*composeService).pullServiceImage(_, {_, _}, {{0xc000357f68, 0x6}, {0x0, 0x0, 0x0}, 0x0, 0x0, ...}, ...)
E           	github..../pkg/compose/pull.go:231 +0x4b0
E           github..../v2/pkg/compose.(*composeService).pullRequiredImages.func1.1()
E           	github..../pkg/compose/pull.go:327 +0x170
E           golang..../x/sync/errgroup.(*Group).Go.func1()
E           	golang.org/x/sync@v0.13.0/errgroup/errgroup.go:79 +0x50
E           created by golang..../x/sync/errgroup.(*Group).Go in goroutine 51
E           	golang.org/x/sync@v0.13.0/errgroup/errgroup.go:76 +0x96
E           
E           goroutine 57 [running]:
E           	goroutine running on other thread; stack unavailable
E           created by golang..../x/sync/errgroup.(*Group).Go in goroutine 51
E           	golang.org/x/sync@v0.13.0/errgroup/errgroup.go:76 +0x96
E           
E           goroutine 59 [select]:
E           net/http.(*persistConn).readLoop(0xc0002386c0)
E           	net/http/transport.go:2325 +0xca5
E           created by net/http.(*Transport).dialConn in goroutine 58
E           	net/http/transport.go:1874 +0x154f
E           
E           goroutine 60 [select]:
E           net/http.(*persistConn).writeLoop(0xc0002386c0)
E           	net/http/transport.go:2519 +0xe7
E           created by net/http.(*Transport).dialConn in goroutine 58
E           	net/http/transport.go:1875 +0x15a5
E           
E           goroutine 41 [select]:
E           net/http.(*persistConn).readLoop(0xc000359e60)
E           	net/http/transport.go:2325 +0xca5
E           created by net/http.(*Transport).dialConn in goroutine 40
E           	net/http/transport.go:1874 +0x154f
E           
E           goroutine 42 [select]:
E           net/http.(*persistConn).writeLoop(0xc000359e60)
E           	net/http/transport.go:2519 +0xe7
E           created by net/http.(*Transport).dialConn in goroutine 40
E           	net/http/transport.go:1875 +0x15a5
E           
E           goroutine 24 [select]:
E           net/http.(*persistConn).writeLoop(0xc0002c0120)
E           	net/http/transport.go:2519 +0xe7
E           created by net/http.(*Transport).dialConn in goroutine 22
E           	net/http/transport.go:1875 +0x15a5
E           
E           goroutine 57 [running]:
E           github..../v2/pkg/compose.(*composeService).pullRequiredImages.func1.1()
E           	github..../pkg/compose/pull.go:328 +0x236
E           golang..../x/sync/errgroup.(*Group).Go.func1()
E           	golang.org/x/sync@v0.13.0/errgroup/errgroup.go:79 +0x50
E           created by golang..../x/sync/errgroup.(*Group).Go in goroutine 51
E           	golang.org/x/sync@v0.13.0/errgroup/errgroup.go:76 +0x96
E           """.

venv/lib/python3.11........./site-packages/pytest_docker/plugin.py:36: Exception

To view more test analytics, go to the Test Analytics Dashboard
📋 Got 3 mins? Take this short survey to help us improve Test Analytics.

Copy link

alwaysmeticulous bot commented May 9, 2025

🔴 Meticulous spotted visual differences in 3 of 1334 screens tested: view and approve differences detected.

Meticulous evaluated ~8 hours of user flows against your PR.

Last updated for commit d57457b. This comment will update as new commits are pushed.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
devops PR or Issue related to DataHub backend & deployment ingestion PR or Issue related to the ingestion of metadata needs-review Label for PRs that need review from a maintainer. product PR or Issue related to the DataHub UI/UX
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant