Skip to content

Commit 2143755

Browse files
Display document ID after finished ingest (#3)
1 parent b7de0f8 commit 2143755

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "maptiler-cloud-cli"
3-
version = "1.0.2"
3+
version = "1.0.3"
44
description = "CLI utility for MapTiler Cloud"
55
authors = ["MapTiler <info@maptiler.com>"]
66
packages = [{include = "maptiler", from = "src"}]

src/maptiler/cloud_cli/base.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ def ingest_tiles(context: click.Context, document_id: Optional[UUID], container:
9696
click.echo(f"\t message: {error['message']}")
9797
elif response_data["status"] == "completed":
9898
click.echo("Finished")
99-
click.echo(ingest_id)
99+
click.echo(response_data["document_id"])
100100

101101

102102
def upload_file(file: Path, url: str):

0 commit comments

Comments
 (0)