diff --git a/metadata-ingestion/src/datahub/entrypoints.py b/metadata-ingestion/src/datahub/entrypoints.py index 4f6c596b7bf20..bcc4ea6af27f5 100644 --- a/metadata-ingestion/src/datahub/entrypoints.py +++ b/metadata-ingestion/src/datahub/entrypoints.py @@ -117,7 +117,9 @@ def init(use_password: bool = False) -> None: if os.path.isfile(DATAHUB_CONFIG_PATH): click.confirm(f"{DATAHUB_CONFIG_PATH} already exists. Overwrite?", abort=True) - click.echo("Configure which datahub instance to connect to") + click.echo( + "Configure which datahub instance to connect to (https://your-instance.acryl.io/gms for Acryl hosted users)" + ) host = click.prompt( "Enter your DataHub host", type=str, default="http://localhost:8080" )