(key uint64)
| 282 | } |
| 283 | |
| 284 | func (n *node) Ctx(key uint64) context.Context { |
| 285 | if pctx := n.Proposals.Get(key); pctx != nil { |
| 286 | return pctx.Ctx |
| 287 | } |
| 288 | return context.Background() |
| 289 | } |
| 290 | |
| 291 | func (n *node) applyConfChange(e raftpb.Entry) { |
| 292 | var cc raftpb.ConfChange |
no test coverage detected