Skip to content

Commit f697da8

Browse files
author
Devdutt Shenoi
committed
ci: deepsource
1 parent ed141a2 commit f697da8

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/parseable.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -59,20 +59,20 @@ impl Parseable {
5959
options: args.options,
6060
storage: Arc::new(args.storage),
6161
storage_name: "drive",
62-
streams: Default::default(),
62+
streams: StreamInfo::default(),
6363
}
6464
}
6565
StorageOptions::S3(args) => Self {
6666
options: args.options,
6767
storage: Arc::new(args.storage),
6868
storage_name: "s3",
69-
streams: Default::default(),
69+
streams: StreamInfo::default(),
7070
},
7171
StorageOptions::Blob(args) => Self {
7272
options: args.options,
7373
storage: Arc::new(args.storage),
7474
storage_name: "blob_store",
75-
streams: Default::default(),
75+
streams: StreamInfo::default(),
7676
},
7777
}
7878
}

0 commit comments

Comments
 (0)