Skip to content

Commit b804eee

Browse files
authored
Merge pull request #1630 from weaviate/fix/potential-races-in-cluster-test
Change test to use ONE rather than ALL to help avoid EC races in CI
2 parents 17271a0 + 9947c4c commit b804eee

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

integration/test_collection_batch_delete.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -645,7 +645,7 @@ def test_delete_many_with_consistency_level(
645645
Property(name="text", data_type=DataType.TEXT),
646646
Property(name="int", data_type=DataType.INT),
647647
],
648-
).with_consistency_level(ConsistencyLevel.ALL)
648+
).with_consistency_level(ConsistencyLevel.ONE)
649649
collection.data.insert_many(
650650
[
651651
DataObject(properties={"int": 10}, uuid=UUID1),

0 commit comments

Comments
 (0)