Skip to content

Commit e2bf272

Browse files
Merge branch 'feature/map-and-all-reduce' of https://github.com/open-sciencelab/GraphGen into feature/map-and-all-reduce
2 parents f391c24 + cb2833c commit e2bf272

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

graphgen/operators/read/parallel_file_scanner.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -194,8 +194,8 @@ def _cache_result(self, key: str, result: Dict, path: Path):
194194
},
195195
)
196196
logger.info("[READ] Cached scan result for path: %s", path)
197-
except OSError:
198-
pass
197+
except OSError as e:
198+
logger.error("[READ] Failed to cache scan result for path %s: %s", path, e)
199199

200200
def _is_allowed_file(self, path: Path) -> bool:
201201
"""Check if the file has an allowed suffix"""

0 commit comments

Comments
 (0)