summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJose Plana <jplana@gmail.com>2014-02-18 21:58:29 +0100
committerJose Plana <jplana@gmail.com>2014-02-18 21:58:29 +0100
commit2a676f2ed86c14f890f5e439814b6a385f37509b (patch)
treeccd429ace6a65f8824bbcb25c50b30542d285a35 /src
parentf8d538c4072abf9ee463858786dbf391b493a135 (diff)
parente66214473bab0310fc5fdb63684363de68d5c6c8 (diff)
Merge pull request #28 from rca/consistent_read_option
Added consistent read option
Diffstat (limited to 'src')
-rw-r--r--src/etcd/client.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/etcd/client.py b/src/etcd/client.py
index facdca8..45d7fbb 100644
--- a/src/etcd/client.py
+++ b/src/etcd/client.py
@@ -24,7 +24,7 @@ class Client(object):
_MPOST = 'POST'
_MDELETE = 'DELETE'
_comparison_conditions = ['prevValue', 'prevIndex', 'prevExist']
- _read_options = ['recursive', 'wait', 'waitIndex', 'sorted']
+ _read_options = ['recursive', 'wait', 'waitIndex', 'sorted', 'consistent']
def __init__(
self,