diff --git a/deeplake/core/storage/lru_cache.py b/deeplake/core/storage/lru_cache.py index 34d296471e..c7f7060e5a 100644 --- a/deeplake/core/storage/lru_cache.py +++ b/deeplake/core/storage/lru_cache.py @@ -57,11 +57,13 @@ def __init__( self.cache_used = 0 self.deeplake_objects: Dict[str, DeepLakeMemoryObject] = {} - self.use_async = ( - next_storage.async_supported() - if next_storage - else False and sys.version_info >= (3, 7) and sys.platform != "win32" - ) + # TODO: BRING THIS BACK AFTER ASYNC IS FIXED + # self.use_async = ( + # next_storage.async_supported() + # if next_storage + # else False and sys.version_info >= (3, 7) and sys.platform != "win32" + # ) + self.use_async = False def register_deeplake_object(self, path: str, obj: DeepLakeMemoryObject): """Registers a new object in the cache."""