Skip to content
Snippets Groups Projects

Add caching to cmip6 ingestion

Merged Ghost User requested to merge cmip6-cache into main
All threads resolved!
3 files
+ 23
11
Compare changes
  • Side-by-side
  • Inline
Files
3
+ 1
1
@@ -220,7 +220,7 @@ async fn ingest_dataset(
}
};
let f = match dataset.metadata_from_path(&path) {
let f = match dataset.metadata_from_path(&path).await {
Ok(f) => f,
Err(e) => {
warn!("{} not a valid drs file, skipping:\n{:?}", path, e);
Loading