File tree Expand file tree Collapse file tree
src/main/java/org/variantsync/diffdetective/analysis Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -146,6 +146,7 @@ public void reportDiffErrors(final List<DiffError> errors) {
146146 public LinkedHashMap <String , Object > snapshot () {
147147 LinkedHashMap <String , Object > snap = new LinkedHashMap <>();
148148 snap .put (MetadataKeys .TASKNAME , taskName );
149+ snap .put (MetadataKeys .REPONAME , repoName );
149150 snap .put (MetadataKeys .RUNTIME_WITH_MULTITHREADING , runtimeWithMultithreadingInSeconds );
150151 snap .put (MetadataKeys .TOTAL_COMMITS , totalCommits );
151152
@@ -154,11 +155,11 @@ public LinkedHashMap<String, Object> snapshot() {
154155 snap .put (MetadataKeys .FILTERED_COMMITS , totalCommits - statistics .processedCommits - statistics .emptyCommits - statistics .failedCommits );
155156 }
156157
157- snap .putAll (Functjonal .bimap (diffErrors , error -> ERROR_BEGIN + error + ERROR_END , Object ::toString ));
158- snap .put (MetadataKeys .REPONAME , repoName );
159158 for (var result : results .values ()) {
160159 snap .putAll (result .snapshot ());
161160 }
161+
162+ snap .putAll (Functjonal .bimap (diffErrors , error -> ERROR_BEGIN + error + ERROR_END , Object ::toString ));
162163 return snap ;
163164 }
164165
You can’t perform that action at this time.
0 commit comments