From 4f50b7dbab9d823a9de2d3ca1ea8733d2f75a3ba Mon Sep 17 00:00:00 2001 From: "yihao.dai" Date: Wed, 9 Oct 2024 11:29:19 +0800 Subject: [PATCH] enhance: Swap the position of import job states (#36699) issue: https://github.com/milvus-io/milvus/issues/36698 Signed-off-by: bigsheeper --- internal/proto/internal.proto | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/internal/proto/internal.proto b/internal/proto/internal.proto index b5fb71d70a..b83a7d75a1 100644 --- a/internal/proto/internal.proto +++ b/internal/proto/internal.proto @@ -304,8 +304,8 @@ enum ImportJobState { Importing = 3; Failed = 4; Completed = 5; - Stats = 6; - IndexBuilding = 7; + IndexBuilding = 6; + Stats = 7; } message ImportFile {