Skip to content

Commit 5bc9443

Browse files
chore: add TODO comments
1 parent dea4390 commit 5bc9443

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

pre-compute/src/compute/pre_compute_app.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,7 @@ impl PreComputeAppTrait for PreComputeApp {
5656
/// app.run();
5757
/// ```
5858
fn run(&mut self) -> Result<(), ReplicateStatusCause> {
59+
// TODO: Collect all errors instead of propagating immediately,and return the list of erros
5960
self.pre_compute_args = PreComputeArgs::read_args()?;
6061
self.check_output_folder()?;
6162
for dataset in &self.pre_compute_args.datasets {

pre-compute/src/compute/pre_compute_args.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -195,6 +195,7 @@ mod tests {
195195
vars
196196
}
197197

198+
// TODO: Collect all errors instead of propagating immediately,and return the list of erros
198199
fn setup_bulk_dataset_env_vars(count: usize) -> HashMap<String, String> {
199200
let mut vars = HashMap::new();
200201
vars.insert(BulkSize.name(), count.to_string());

0 commit comments

Comments
 (0)