From 5d054ba2dde2faad5dc3baaac129eb1028de16bf Mon Sep 17 00:00:00 2001 From: Chris Donati Date: Fri, 17 Nov 2017 10:34:57 -0800 Subject: [PATCH] ZOOKEEPER-2944: Specify correct overflow value When a sequence counter exceeds 2147483647, the next value is -2147483648. --- .../src/documentation/content/xdocs/zookeeperProgrammers.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/docs/src/documentation/content/xdocs/zookeeperProgrammers.xml b/src/docs/src/documentation/content/xdocs/zookeeperProgrammers.xml index e1dfea71a8d..998c7be1a59 100644 --- a/src/docs/src/documentation/content/xdocs/zookeeperProgrammers.xml +++ b/src/docs/src/documentation/content/xdocs/zookeeperProgrammers.xml @@ -241,7 +241,7 @@ counter used to store the next sequence number is a signed int (4bytes) maintained by the parent node, the counter will overflow when incremented beyond 2147483647 (resulting in a - name "<path>-2147483647"). + name "<path>-2147483648").