| 24 | ) |
| 25 | |
| 26 | type completeOp struct { |
| 27 | tenantID string |
| 28 | blockID uuid.UUID |
| 29 | |
| 30 | at time.Time |
| 31 | attempts int |
| 32 | bo time.Duration |
| 33 | maxBackoff time.Duration |
| 34 | } |
| 35 | |
| 36 | func (o *completeOp) Key() string { return o.tenantID + "/" + o.blockID.String() } |
| 37 |
nothing calls this directly
no outgoing calls
no test coverage detected