Skip to content
Snippets Groups Projects

Ingest

Merged Ghost User requested to merge ingest into main
Compare and Show latest version
1 file
+ 2
3
Compare changes
  • Side-by-side
  • Inline
+ 2
3
@@ -176,8 +176,7 @@ async fn ingest_structure(
Ok(p) => p,
Err(e) => {
warn!(
"{} not a valid drs file, has non UTF8 characters in path:\n{:?}",
entry.path().display(),
"not a valid drs file, has non UTF8 characters in path:\n{:?}",
e
);
skipped += 1;
@@ -188,7 +187,7 @@ async fn ingest_structure(
let f = match structure.metadata_from_path(&path) {
Ok(f) => f,
Err(e) => {
warn!("{} not a valid drs file, skipping:\n{:?}", path, e);
warn!("not a valid drs file, skipping:\n{:#?}", e);
skipped += 1;
continue;
}
Loading