File tree Expand file tree Collapse file tree 2 files changed +2
-0
lines changed
Expand file tree Collapse file tree 2 files changed +2
-0
lines changed Original file line number Diff line number Diff 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 {
Original file line number Diff line number Diff 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 ( ) ) ;
You can’t perform that action at this time.
0 commit comments