Skip to content

Commit

Permalink
(chore): Linting fix
Browse files Browse the repository at this point in the history
  • Loading branch information
rtekal authored Jul 28, 2024
1 parent d85da39 commit fd080a0
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ public RollbackResponse rollbackIngestion(
// Rollback timeseries aspects
DeleteAspectValuesResult timeseriesRollbackResult =
timeseriesAspectService.rollbackTimeseriesAspects(opContext, runId);
rowsDeletedFromEntityDeletion += timeseriesRollbackResult.getNumDocsDeleted();
rowsDeletedFromEntityDeletion += timeseriesRollbackResult.getNumDocsDeleted().intValue();

log.info("finished deleting {} rows", deletedRows.size());
int aspectsReverted = deletedRows.size() + rowsDeletedFromEntityDeletion;
Expand Down

0 comments on commit fd080a0

Please sign in to comment.