Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/partition_awareness.rst
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ For example:
from pyignite import Client

client = Client(
partition_awareness=True
partition_aware=True
)
nodes = [('10.128.0.1', 10800), ('10.128.0.2', 10800),...]
with client.connect(nodes):
Expand All @@ -56,7 +56,7 @@ For example:
from pyignite import AioClient

client = AioClient(
partition_awareness=True
partition_aware=True
)
nodes = [('10.128.0.1', 10800), ('10.128.0.2', 10800),...]
async with client.connect(nodes):
Expand Down