RED-9387 - Update hasComments flag based on entity log entries number of comments #551

Merged
andrei.isvoran.ext merged 1 commits from RED-9387-comments into master 2024-06-19 12:17:55 +02:00

View File

@ -117,6 +117,10 @@ public class AnalysisFlagsCalculationService {
hasUpdates = true;
}
if (entry.getNumberOfComments() > 0) {
hasComments = true;
}
}
log.info("Flag Calculations for file: {} took: {}ms", fileId, System.currentTimeMillis() - startTime);