Skip to content

Commit

Permalink
Log a message when a Zarr doesn't need ingestion
Browse files Browse the repository at this point in the history
  • Loading branch information
jwodder committed Jul 6, 2022
1 parent 314046d commit 95cedc9
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion dandi/files.py
Original file line number Diff line number Diff line change
Expand Up @@ -1036,7 +1036,9 @@ def mkzarr() -> str:
r = client.get(f"/zarr/{zarr_id}/")
if r["status"] == "Complete":
break
lgr.info("%s: Asset successfully uploaded", asset_path)
lgr.info("%s: Asset successfully uploaded", asset_path)
else:
lgr.info("%s: No changes made to Zarr", asset_path)
yield {"status": "done", "asset": a}


Expand Down

0 comments on commit 95cedc9

Please sign in to comment.