Skip to content

Commit

Permalink
Framework: add condition in AOD merger to handle empty DFs in linked …
Browse files Browse the repository at this point in the history
…derived data
  • Loading branch information
fgrosa committed Feb 15, 2024
1 parent 144a9aa commit d83b27d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Framework/AODMerger/src/aodMerger.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -388,7 +388,7 @@ int main(int argc, char* argv[])
}
}

if (currentDirSize > maxDirSize) {
if (maxDirSize == 0 || currentDirSize > maxDirSize) {
if (verbosity > 0) {
printf("Maximum size reached: %ld. Closing folder %s.\n", currentDirSize, dfName);
}
Expand Down

0 comments on commit d83b27d

Please sign in to comment.