TMP sidecars
Some checks failed
CI / Typos (push) Successful in 30s
CI / Clippy (push) Failing after 1m13s
CI / Build and test (all features) (push) Successful in 4m25s
CI / Build and test (push) Successful in 5m45s

This commit is contained in:
2026-03-16 20:26:41 -07:00
parent f2f5726d7b
commit e5193a1114
12 changed files with 276 additions and 272 deletions

View File

@@ -118,7 +118,7 @@ impl Datasets {
Source::Filesystem {
enabled,
path,
sidecars,
pattern,
} => {
if !enabled {
continue;
@@ -129,7 +129,7 @@ impl Datasets {
Dataset::Dir(Arc::new(DirDataSource::new(
label,
path_parent.join(path),
*sidecars,
pattern.clone(),
))),
);
}
@@ -141,7 +141,7 @@ impl Datasets {
endpoint,
region,
credentials,
sidecars,
pattern,
} => {
if !enabled {
continue;
@@ -154,7 +154,7 @@ impl Datasets {
endpoint.clone(),
region.clone(),
credentials,
*sidecars,
pattern.clone(),
) {
Ok(ds) => {
sources.insert(label.clone(), Dataset::S3(Arc::new(ds)));