diff --git a/internal/indexnode/indexnode.go b/internal/indexnode/indexnode.go index d3f06038a3..e9ca99ddb1 100644 --- a/internal/indexnode/indexnode.go +++ b/internal/indexnode/indexnode.go @@ -64,7 +64,7 @@ func NewIndexNode(ctx context.Context) (*IndexNode, error) { func (i *IndexNode) Init() error { ctx := context.Background() - err := funcutil.WaitForComponentHealthy(ctx, i.serviceClient, "IndexService", 10, time.Second) + err := funcutil.WaitForComponentHealthy(ctx, i.serviceClient, "IndexService", 100, time.Millisecond*200) if err != nil { return err diff --git a/tests/python_test/collection/test_list_collections.py b/tests/python_test/collection/test_list_collections.py index 42d4cf5b22..c790c6b612 100644 --- a/tests/python_test/collection/test_list_collections.py +++ b/tests/python_test/collection/test_list_collections.py @@ -60,6 +60,7 @@ class TestListCollections: assert collection_name not in connect.list_collections() # TODO: make sure to run this case in the end + @pytest.mark.skip("r0.3-test") @pytest.mark.level(2) @pytest.mark.tags("0331") def test_list_collections_no_collection(self, connect):