Skip to content

Commit 798d633

Browse files
committed
fix:参数默认值去掉多余的-
1 parent a0f20c5 commit 798d633

File tree

1 file changed

+2
-2
lines changed
  • backend/services/rag-indexer-service/src/main/java/com/datamate/rag/indexer/infrastructure/event

1 file changed

+2
-2
lines changed

backend/services/rag-indexer-service/src/main/java/com/datamate/rag/indexer/infrastructure/event/RagEtlService.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,9 +51,9 @@
5151
public class RagEtlService {
5252
private static final Semaphore SEMAPHORE = new Semaphore(10);
5353

54-
@Value("${datamate.rag.milvus-host:-milvus-standalone}")
54+
@Value("${datamate.rag.milvus-host:milvus-standalone}")
5555
private String milvusHost;
56-
@Value("${datamate.rag.milvus-port:-19530}")
56+
@Value("${datamate.rag.milvus-port:19530}")
5757
private int milvusPort;
5858

5959
private final RagFileRepository ragFileRepository;

0 commit comments

Comments
 (0)