Skip to content
Merged
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
8 changes: 6 additions & 2 deletions tests/backup_acks_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,14 @@ def test_smart_mode(self):
cluster_name=self.cluster.id,
fail_on_indeterminate_operation_state=True,
)
m = self.client.get_map("test")
m = self.client.get_map("test").blocking()

# TODO: Remove the next line once
# https://github.com/hazelcast/hazelcast/issues/9398 is fixed
m.get(1)

# it's enough for this operation to succeed
m.set(1, 2).result()
m.set(1, 2)

def test_lost_backups_on_smart_mode_with_fail_on_indeterminate_operation_state(self):
self.client = HazelcastClient(
Expand Down