dParikesit opened a new pull request, #2172:
URL: https://github.com/apache/zookeeper/pull/2172
…he session expiration
The core part of this fix is
```
// if this snapshot has a higher zxid than the checkpoint zxid, skip and
continue to the previous snapshot
if (snapZxid > zxid) {
continue;
}
```
However, the zxid must be propagated from tuncateLog(), which is why I added
another loadDatabase, deserialize, and restore with zxid as its additional
parameter.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]