File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -403,14 +403,16 @@ def _maybe_refresh_dependency_cache(self):
403403 """
404404 try :
405405 from omnipkg .isolation .fs_lock_queue import DepCacheSentinel
406- if sentinel_is_dirty : = DepCacheSentinel (self .multiversion_base ).is_dirty_since (
406+ sentinel_is_dirty = DepCacheSentinel (self .multiversion_base ).is_dirty_since (
407407 omnipkgLoader ._dep_cache_built_at
408- ):
408+ )
409+ if sentinel_is_dirty :
409410 if not self .quiet :
410411 safe_print (" ♻️ [cache] FS change detected — refreshing dep cache" )
411412 omnipkgLoader ._dependency_cache = None
412- except Exception :
413- pass
413+ except Exception as e :
414+ # FIXED: Replaced 'pass' with an error message
415+ safe_print (f" ⚠️ [cache] Error occurred while checking dependency cache: { e } " )
414416
415417 def _profile_start (self , label ):
416418 """Start timing a profiled section"""
You can’t perform that action at this time.
0 commit comments