Skip to content

Commit

Permalink
Update runtime/codecoverage/src/main/java/com/walmartlabs/concord/plu…
Browse files Browse the repository at this point in the history
…gins/codecoverage/CodeCoverage.java

Co-authored-by: Ivan Bodrov <ibodrov@gmail.com>
  • Loading branch information
brig and ibodrov authored Dec 3, 2024
1 parent 2d11642 commit bfdefa7
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ private void saveFlows(ProcessDefinition processDefinition) {
try (ZipArchiveOutputStream zip = new ZipArchiveOutputStream(out)) {

for (var fileName : fileNames) {
Path file = workDir.resolve(fileName);
var file = workDir.resolve(fileName);
if (Files.notExists(file)) {
log.warn("CodeCoverage: can't save flow '{}' -> file not exists. This is most likely a bug", fileName);
continue;
Expand Down

0 comments on commit bfdefa7

Please sign in to comment.