diff --git a/piker/storage/nativedb.py b/piker/storage/nativedb.py index ff914245..274bf039 100644 --- a/piker/storage/nativedb.py +++ b/piker/storage/nativedb.py @@ -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')