From e9b69a62b24d731c0425d5d52a774fa6334b6217 Mon Sep 17 00:00:00 2001 From: Alon Diamant Date: Fri, 14 Nov 2014 20:06:13 +0200 Subject: [PATCH] Added LOCAL_ONE consistency level constant --- cqlengine/__init__.py | 1 + 1 file changed, 1 insertion(+) diff --git a/cqlengine/__init__.py b/cqlengine/__init__.py index ef273d96..0961afd3 100644 --- a/cqlengine/__init__.py +++ b/cqlengine/__init__.py @@ -27,6 +27,7 @@ ONE = ConsistencyLevel.ONE TWO = ConsistencyLevel.TWO THREE = ConsistencyLevel.THREE QUORUM = ConsistencyLevel.QUORUM +LOCAL_ONE = ConsistencyLevel.LOCAL_ONE LOCAL_QUORUM = ConsistencyLevel.LOCAL_QUORUM EACH_QUORUM = ConsistencyLevel.EACH_QUORUM ALL = ConsistencyLevel.ALL