| 60 | } |
| 61 | |
| 62 | type instanceTracker struct { |
| 63 | storage trackerTypes.InstanceStorage |
| 64 | quit chan struct{} |
| 65 | done chan struct{} |
| 66 | mu sync.Mutex |
| 67 | lastInstance *trackerTypes.TrackedInstance |
| 68 | } |
| 69 | |
| 70 | func (t *instanceTracker) start() { |
| 71 | defer close(t.done) |
nothing calls this directly
no outgoing calls
no test coverage detected