From bad3866d11b11980acd2215152c06e8bb009f5da Mon Sep 17 00:00:00 2001 From: Tyler Hobbs Date: Fri, 15 Nov 2013 12:50:12 -0600 Subject: [PATCH] s/checksum/digest/ in RetryPolicy docs --- cassandra/policies.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cassandra/policies.py b/cassandra/policies.py index 0e250487..15a7194a 100644 --- a/cassandra/policies.py +++ b/cassandra/policies.py @@ -517,13 +517,13 @@ class RetryPolicy(object): how many replicas needed to respond to meet the requested consistency level and how many actually did respond before the coordinator timed out the request. `data_retrieved` is a boolean indicating whether - any of those responses contained data (as opposed to just a checksum). + any of those responses contained data (as opposed to just a digest). `retry_num` counts how many times the operation has been retried, so the first time this method is called, `retry_num` will be 0. By default, operations will be retried at most once, and only if - a sufficient number of replicas responded (with checksums). + a sufficient number of replicas responded (with data digests). """ if retry_num != 0: return (self.RETHROW, None)