Skip to content

Commit

Permalink
fix(cli): update message when pulling docker images (#7241)
Browse files Browse the repository at this point in the history
Co-authored-by: Pedro Silva <[email protected]>
Co-authored-by: Aseem Bansal <[email protected]>
  • Loading branch information
3 people authored Feb 6, 2023
1 parent e8c1412 commit 389aa8c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion metadata-ingestion/src/datahub/cli/docker_cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -709,7 +709,9 @@ def quickstart(
# Pull and possibly build the latest containers.
try:
if pull_images:
click.echo("Pulling docker images...")
click.echo(
"Pulling docker images...This may take a while depending on your network bandwidth."
)
with click_spinner.spinner():
subprocess.run(
[*base_command, "pull", "-q"],
Expand Down

0 comments on commit 389aa8c

Please sign in to comment.