File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -84,7 +84,7 @@ pub trait TraceWriter {
8484
8585 fn finish_writing_trace_metadata ( & self , path : & Path ) -> Result < ( ) , Box < dyn Error > > ;
8686 fn finish_writing_trace_events ( & self ) -> Result < ( ) , Box < dyn Error > > ;
87- fn store_trace_paths ( & self , path : & Path ) -> Result < ( ) , Box < dyn Error > > ;
87+ fn finish_writing_trace_paths ( & self , path : & Path ) -> Result < ( ) , Box < dyn Error > > ;
8888}
8989
9090
@@ -443,7 +443,7 @@ impl TraceWriter for NonStreamingTraceWriter {
443443 }
444444 }
445445
446- fn store_trace_paths ( & self , path : & Path ) -> Result < ( ) , Box < dyn Error > > {
446+ fn finish_writing_trace_paths ( & self , path : & Path ) -> Result < ( ) , Box < dyn Error > > {
447447 let json = serde_json:: to_string ( & self . path_list ) ?;
448448 fs:: write ( path, json) ?;
449449 Ok ( ( ) )
You can’t perform that action at this time.
0 commit comments