.nativedb: ignore an `expired/` subdir
parent
8f40e522ef
commit
c9681d0aa2
|
@ -187,7 +187,7 @@ class NativeStorageClient:
|
|||
|
||||
def index_files(self):
|
||||
for path in self._datadir.iterdir():
|
||||
if 'borked' in path.name:
|
||||
if path.name in {'borked', 'expired',}:
|
||||
continue
|
||||
|
||||
key: str = path.name.rstrip('.parquet')
|
||||
|
|
Loading…
Reference in New Issue