We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a24f89a commit 8be5f30Copy full SHA for 8be5f30
xcube/webapi/datasets/context.py
@@ -410,9 +410,9 @@ def get_dataset_configs_from_stores(
410
"datasets may cause a long setup time of the server."
411
)
412
data_store = data_store_pool.get_store(store_instance_id)
413
- store_dataset_ids = itertools.chain(
414
- data_store.get_data_ids(data_type=DATASET_TYPE),
415
- data_store.get_data_ids(data_type=MULTI_LEVEL_DATASET_TYPE),
+ store_dataset_ids = set(
+ data_store.list_data_ids(data_type=DATASET_TYPE) +
+ data_store.list_data_ids(data_type=MULTI_LEVEL_DATASET_TYPE)
416
417
for store_dataset_id in store_dataset_ids:
418
if fnmatch.fnmatch(store_dataset_id, dataset_id_pattern):
0 commit comments