Skip to content

Commit

Permalink
test: update interval param to new minimum value of 10000
Browse files Browse the repository at this point in the history
  • Loading branch information
dwelch-spike committed Aug 29, 2024
1 parent 05aefeb commit 3eb0100
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tests/standard/aio/test_admin_client_index_create.py
Original file line number Diff line number Diff line change
Expand Up @@ -367,7 +367,7 @@ async def test_index_create_with_sets(session_admin_client, test_case, random_na
vector_distance_metric=None,
sets=None,
index_params=types.HnswParams(
batching_params=types.HnswBatchingParams(max_records=2000, interval=500)
batching_params=types.HnswBatchingParams(max_records=2000, interval=20000)
),
index_labels=None,
index_storage=None,
Expand Down
2 changes: 1 addition & 1 deletion tests/standard/sync/test_admin_client_index_create.py
Original file line number Diff line number Diff line change
Expand Up @@ -387,7 +387,7 @@ def test_index_create_with_sets(session_admin_client, test_case, random_name):
vector_distance_metric=None,
sets="demo",
index_params=types.HnswParams(
batching_params=types.HnswBatchingParams(max_records=2000, interval=500),
batching_params=types.HnswBatchingParams(max_records=2000, interval=20000),
),
index_labels=None,
index_storage=None,
Expand Down

0 comments on commit 3eb0100

Please sign in to comment.