diff --git a/pkg/hold/gc/gc.go b/pkg/hold/gc/gc.go index 1ff1dd7..a913a48 100644 --- a/pkg/hold/gc/gc.go +++ b/pkg/hold/gc/gc.go @@ -107,13 +107,13 @@ type manifestInfo struct { // analysisResult holds intermediate data from record analysis, shared between Run and Preview type analysisResult struct { - referenced map[string]bool - orphanedRkeys []string // rkeys for deletion in Run - orphanedDetails []OrphanedRecordDetail // details for display in Preview - missingDetails []MissingRecordDetail // details for creation in Run / display in Preview - usersChecked int64 + referenced map[string]bool + orphanedRkeys []string // rkeys for deletion in Run + orphanedDetails []OrphanedRecordDetail // details for display in Preview + missingDetails []MissingRecordDetail // details for creation in Run / display in Preview + usersChecked int64 manifestsChecked int64 - totalRecords int + totalRecords int } // NewGarbageCollector creates a new GC instance