From 45e0460050549f5b4481bb7dc04a6aaacef77cd4 Mon Sep 17 00:00:00 2001 From: Gabe Lyons Date: Mon, 8 Apr 2024 18:47:45 -0700 Subject: [PATCH] docs(init): Update entrypoints.py to be more clear about acryl init (#10248) --- metadata-ingestion/src/datahub/entrypoints.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/metadata-ingestion/src/datahub/entrypoints.py b/metadata-ingestion/src/datahub/entrypoints.py index 4f6c596b7bf20a..bcc4ea6af27f54 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" )