| 32 | ) |
| 33 | |
| 34 | type leasingKV struct { |
| 35 | cl *v3.Client |
| 36 | kv v3.KV |
| 37 | pfx string |
| 38 | leases leaseCache |
| 39 | |
| 40 | ctx context.Context |
| 41 | cancel context.CancelFunc |
| 42 | wg sync.WaitGroup |
| 43 | |
| 44 | sessionOpts []concurrency.SessionOption |
| 45 | session *concurrency.Session |
| 46 | sessionc chan struct{} |
| 47 | } |
| 48 | |
| 49 | var closedCh chan struct{} |
| 50 |
nothing calls this directly
no outgoing calls
no test coverage detected