()
| 142 | } |
| 143 | |
| 144 | func (c *Controller) Backend() backend.Backend { |
| 145 | c.mu.RLock() |
| 146 | defer c.mu.RUnlock() |
| 147 | return c.backend |
| 148 | } |
| 149 | |
| 150 | func (c *Controller) keepAliveTracker(ctx context.Context, keepAlive time.Duration) { |
| 151 | ticker := time.NewTicker(5 * time.Second) |
no outgoing calls
no test coverage detected