(op *completeOp)
| 296 | } |
| 297 | |
| 298 | func observeFailedOp(op *completeOp) { |
| 299 | metricFailedCompletions.Inc() |
| 300 | if op.attempts > 1 { |
| 301 | metricCompletionFailedRetries.Inc() |
| 302 | } |
| 303 | } |
| 304 | |
| 305 | func (s *LiveStore) reloadBlocks() error { |
| 306 | // Reclaim tombstoned blocks left by an unclean shutdown before |
no test coverage detected