Skip to content

Commit 538b79c

Browse files
committed
Fall back onto next layer if get fails
1 parent 497948b commit 538b79c

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

bossphorus/storagemanager/_FilesystemStorageManager.py

+5-1
Original file line numberDiff line numberDiff line change
@@ -222,7 +222,11 @@ def getdata(
222222
bossURI
223223
224224
"""
225-
return self.fs.retrieve(col, exp, chan, res, xs, ys, zs)
225+
if self.hasdata(col, exp, chan, res, xs, ys, zs):
226+
return self.fs.retrieve(col, exp, chan, res, xs, ys, zs)
227+
if self.is_terminal:
228+
raise IndexError("Cannot find data at: ", (col, exp, chan, res, xs, ys, zs))
229+
return self._next.getdata(col, exp, chan, res, xs, ys, zs)
226230

227231
def __str__(self):
228232
return f"<FilesystemStorageManager [{str(self.fs)}]>"

notebooks/Using Bossphorus with Intern.ipynb

+2-2
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@
163163
},
164164
{
165165
"cell_type": "code",
166-
"execution_count": 32,
166+
"execution_count": 38,
167167
"metadata": {},
168168
"outputs": [],
169169
"source": [
@@ -187,7 +187,7 @@
187187
},
188188
{
189189
"cell_type": "code",
190-
"execution_count": 33,
190+
"execution_count": 36,
191191
"metadata": {},
192192
"outputs": [
193193
{

0 commit comments

Comments
 (0)