Skip to content
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

docs(init): Update entrypoints.py to be more clear about acryl init #10248

Merged
merged 2 commits into from
Apr 9, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion metadata-ingestion/src/datahub/entrypoints.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"
)
Expand Down
Loading