(cancel context.CancelFunc)
| 2953 | } |
| 2954 | |
| 2955 | func (p *Plugin) setRunningCancel(cancel context.CancelFunc) { |
| 2956 | p.runMu.Lock() |
| 2957 | defer p.runMu.Unlock() |
| 2958 | p.runCancel = cancel |
| 2959 | } |
| 2960 | |
| 2961 | func (p *Plugin) clearRunningCancel() { |
| 2962 | p.runMu.Lock() |
no outgoing calls
no test coverage detected