Skip to content

Commit 5e4bf89

Browse files
committed
do not load db
1 parent 565efa7 commit 5e4bf89

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

xarray_esgf/client.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,11 @@ class Client:
4848

4949
@cached_property
5050
def _client(self) -> Esgpull:
51-
client = Esgpull(path=self.esgpull_path, install=True)
51+
client = Esgpull(
52+
path=self.esgpull_path,
53+
install=True,
54+
load_db=False,
55+
)
5256
client.config.download.disable_ssl = True
5357
if self.index_node is not None:
5458
client.config.api.index_node = self.index_node

0 commit comments

Comments
 (0)