From 5ac0f0605ae9db1135d2da96b91394f57400c0d8 Mon Sep 17 00:00:00 2001 From: Tim Jenness Date: Thu, 1 May 2025 16:33:10 -0700 Subject: [PATCH] Add new dry_run parameter to Datastore.ingest_zip --- .../analysis/tools/interfaces/datastore/_sasquatchDatastore.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/lsst/analysis/tools/interfaces/datastore/_sasquatchDatastore.py b/python/lsst/analysis/tools/interfaces/datastore/_sasquatchDatastore.py index cf15fd126..0abb34a04 100644 --- a/python/lsst/analysis/tools/interfaces/datastore/_sasquatchDatastore.py +++ b/python/lsst/analysis/tools/interfaces/datastore/_sasquatchDatastore.py @@ -261,7 +261,7 @@ def getURI(self, datasetRef: DatasetRef, predict: bool = False) -> ResourcePath: def getURIs(self, datasetRef: DatasetRef, predict: bool = False) -> DatasetRefURIs: raise NotImplementedError() - def ingest_zip(self, zip_path: ResourcePath, transfer: str | None) -> None: + def ingest_zip(self, zip_path: ResourcePath, transfer: str | None, *, dry_run: bool = False) -> None: raise NotImplementedError() def retrieveArtifacts(