20735: Update to go 1.20.
[arvados.git] / services / keepstore / trash_worker.go
index 3909d90d9204d55a80252449abb88e953ace1b24..d7c73127eb17caad038f64d50d60414f1db39685 100644 (file)
@@ -12,12 +12,7 @@ import (
        "github.com/sirupsen/logrus"
 )
 
-// RunTrashWorker is used by Keepstore to initiate trash worker channel goroutine.
-//     The channel will process trash list.
-//             For each (next) trash request:
-//      Delete the block indicated by the trash request Locator
-//             Repeat
-//
+// RunTrashWorker processes the trash request queue.
 func RunTrashWorker(volmgr *RRVolumeManager, logger logrus.FieldLogger, cluster *arvados.Cluster, trashq *WorkQueue) {
        for item := range trashq.NextItem {
                trashRequest := item.(TrashRequest)