(key string)
| 540 | } |
| 541 | |
| 542 | func (f *DeltaFIFO) syncKey(key string) error { |
| 543 | f.lock.Lock() |
| 544 | defer f.lock.Unlock() |
| 545 | |
| 546 | return f.syncKeyLocked(key) |
| 547 | } |
| 548 | |
| 549 | func (f *DeltaFIFO) syncKeyLocked(key string) error { |
| 550 | obj, exists, err := f.knownObjects.GetByKey(key) |
nothing calls this directly
no test coverage detected