| 381 | |
| 382 | |
| 383 | void ZooKeeperStorageProcess::reconnecting(int64_t sessionId) |
| 384 | { |
| 385 | if (sessionId != zk->getSessionId()) { |
| 386 | return; |
| 387 | } |
| 388 | |
| 389 | state = CONNECTING; |
| 390 | } |
| 391 | |
| 392 | |
| 393 | void ZooKeeperStorageProcess::expired(int64_t sessionId) |
nothing calls this directly
no test coverage detected