(nodeID int, r operationResult)
| 54 | } |
| 55 | |
| 56 | func (pc *reconciliationContext) set(nodeID int, r operationResult) { |
| 57 | pc.mu.Lock() |
| 58 | defer pc.mu.Unlock() |
| 59 | pc.results[nodeID] = r |
| 60 | } |
| 61 | |
| 62 | func (pc *reconciliationContext) get(nodeID int) operationResult { |
| 63 | pc.mu.Lock() |
no test coverage detected