From 92a7b73ea9ffc46168478ec0717e1875e480f839 Mon Sep 17 00:00:00 2001 From: BossZou <40255591+BossZou@users.noreply.github.com> Date: Mon, 15 Jun 2020 23:25:21 +0800 Subject: [PATCH] (fix #2487) Remove timeout when creating collection in dev test (#2541) Signed-off-by: Yhz Co-authored-by: Jin Hai --- CHANGELOG.md | 9 +++++---- tests/milvus_python_test/conftest.py | 2 +- 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5a0f324af6..fb47555edf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,14 +5,15 @@ Please mark all change in change log and use the issue from GitHub # Milvus 0.11.0 (TBD) ## Bug -- \#2551 Fix test_hybrid_db and test_rpc error +- \#2487 Remove timeout when creating collection in dev test +- \#2551 Fix test_hybrid_db and test_rpc error ## Feature -- \#2319 Redo metadata to support MVCC -- \#2509 Count up query statistics for debug ease +- \#2319 Redo metadata to support MVCC +- \#2509 Count up query statistics for debug ease ## Improvement -- \#2543 Remove secondary_path related code +- \#2543 Remove secondary_path related code ## Task diff --git a/tests/milvus_python_test/conftest.py b/tests/milvus_python_test/conftest.py index 4c2b1914bc..78a72df6ba 100644 --- a/tests/milvus_python_test/conftest.py +++ b/tests/milvus_python_test/conftest.py @@ -8,7 +8,7 @@ from milvus import Milvus, IndexType, MetricType from utils import * index_file_size = 10 -timeout = 1 +timeout = 60 delete_timeout = 60 def pytest_addoption(parser):