Currently, the cache code in fsspec (caching.py#L560) calls the fetcher during init. This fetcher utilizes gcsfs, as shown here.
However, there is an initialization order issue: gcsfs variable was only set after the cache is fully initialized, which can be seen here.
I've fixed this in my PR here
Currently, the cache code in fsspec (caching.py#L560) calls the fetcher during init. This fetcher utilizes gcsfs, as shown here.
However, there is an initialization order issue: gcsfs variable was only set after the cache is fully initialized, which can be seen here.
I've fixed this in my PR here