Skip to content

Commit

Permalink
Fix tmp lint
Browse files Browse the repository at this point in the history
  • Loading branch information
andylibrian committed Mar 31, 2024
1 parent ddea72b commit dc7bc22
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions pkg/server/ingestion_worker.go
Original file line number Diff line number Diff line change
Expand Up @@ -85,10 +85,10 @@ func (iw *IngestionWorker) loopConsumeQueueEventDetection(queue protoqueue.Queue
}

event.ServerTimestamp = timestamppb.Now()
err = iw.eventStore.Add(event)
_ = iw.eventStore.Add(event)

Check warning on line 88 in pkg/server/ingestion_worker.go

View check run for this annotation

Codecov / codecov/patch

pkg/server/ingestion_worker.go#L87-L88

Added lines #L87 - L88 were not covered by tests

if err != nil {
// iw.logger.WithError(err).Error("error while processing event")
}
// if err != nil {
// iw.logger.WithError(err).Error("error while processing event")
// }
}
}

0 comments on commit dc7bc22

Please sign in to comment.