Skip to content
Snippets Groups Projects
Commit cbd9c82c authored by David Douard's avatar David Douard
Browse files

Small docstring improvements in the deposit loader code

parent 44727797
No related branches found
No related tags found
No related merge requests found
......@@ -101,7 +101,7 @@ class DepositPackageInfo(BasePackageInfo):
class DepositLoader(PackageLoader[DepositPackageInfo]):
"""Load pypi origin's artifact releases into swh archive.
"""Load a deposited artifact into swh archive.
"""
......@@ -217,12 +217,14 @@ class DepositLoader(PackageLoader[DepositPackageInfo]):
return self.client.metadata_get(self.deposit_id)
def load(self) -> Dict:
# First making sure the deposit is known prior to trigger a loading
# First making sure the deposit is known on the deposit's RPC server
# prior to trigger a loading
try:
self.metadata()
except ValueError:
logger.error(f"Unknown deposit {self.deposit_id}, ignoring")
return {"status": "failed"}
# Then usual loading
r = super().load()
success = r["status"] != "failed"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment