This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| diff --git a/spring-ai-spring-boot-autoconfigure/src/main/java/org/springframework/ai/autoconfigure/vectorstore/milvus/MilvusVectorStoreAutoConfiguration.java b/spring-ai-spring-boot-autoconfigure/src/main/java/org/springframework/ai/autoconfigure/vectorstore/milvus/MilvusVectorStoreAutoConfiguration.java | |
| index 90d48ac5..4f247378 100644 | |
| --- a/spring-ai-spring-boot-autoconfigure/src/main/java/org/springframework/ai/autoconfigure/vectorstore/milvus/MilvusVectorStoreAutoConfiguration.java | |
| +++ b/spring-ai-spring-boot-autoconfigure/src/main/java/org/springframework/ai/autoconfigure/vectorstore/milvus/MilvusVectorStoreAutoConfiguration.java | |
| @@ -27,6 +27,7 @@ import io.milvus.param.MetricType; | |
| import org.springframework.ai.embedding.BatchingStrategy; | |
| import org.springframework.ai.embedding.EmbeddingModel; | |
| import org.springframework.ai.embedding.TokenCountBatchingStrategy; | |
| +import org.springframework.ai.milvus.vectorstore.CustomMilvusVectorStore; | |
| import org.springframework.ai.milvus.vectorstore.MilvusVectorStore; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 2018-03-21 01:38:48.250 INFO 53817 --- [ main] .s.c.s.s.s.DeployerInitializationService : Added 'Cloud Foundry' platform account 'cf-dev' into deployer repository. | |
| 2018-03-21 01:38:48.250 INFO 53817 --- [ main] .s.c.s.s.s.DeployerInitializationService : Added 'Local' platform account 'default' into deployer repository. | |
| 2018-03-21 01:38:48.252 INFO 53817 --- [ main] o.s.c.s.s.app.SkipperServerApplication : Started SkipperServerApplication in 36.255 seconds (JVM running for 40.893) | |
| 2018-03-21 01:38:52.076 INFO 53817 --- [nio-7577-exec-1] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring FrameworkServlet 'dispatcherServlet' | |
| 2018-03-21 01:39:07.372 INFO 53817 --- [nio-7577-exec-4] o.s.s.s.DefaultStateMachineService : Acquiring machine with id a1 | |
| 2018-03-21 01:39:07.372 INFO 53817 --- [nio-7577-exec-4] o.s.s.s.DefaultStateMachineService : Getting new machine from factory with id a1 | |
| 2018-03-21 01:39:07.475 INFO 53817 --- [nio-7577-exec-4] o.s.s.support |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 13a14 | |
| > | |
| 17,19c18,20 | |
| < <!--<module name="AnnotationUseStyle">--> | |
| < <!--<property name="elementStyle" value="compact"/>--> | |
| < <!--</module>--> | |
| --- | |
| > <module name="AnnotationUseStyle"> | |
| > <property name="elementStyle" value="compact"/> | |
| > </module> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| diff --git a/ui/app/scripts/stream/controllers/definition-deploy.js b/ui/app/scripts/stream/controllers/definition-deploy.js | |
| index 02cace4..416d6fd 100644 | |
| --- a/ui/app/scripts/stream/controllers/definition-deploy.js | |
| +++ b/ui/app/scripts/stream/controllers/definition-deploy.js | |
| @@ -64,15 +64,17 @@ define([], function () { | |
| if (properties) { | |
| propertiesAsMap = {}; | |
| for (let prop of properties) { | |
| - var keyValue = prop.split('='); | |
| - if (keyValue.length===2) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* | |
| * Copyright 2014 the original author or authors. | |
| * | |
| * Licensed under the Apache License, Version 2.0 (the "License"); | |
| * you may not use this file except in compliance with the License. | |
| * You may obtain a copy of the License at | |
| * | |
| * http://www.apache.org/licenses/LICENSE-2.0 | |
| * | |
| * Unless required by applicable law or agreed to in writing, software |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* | |
| * Copyright 2014 the original author or authors. | |
| * | |
| * Licensed under the Apache License, Version 2.0 (the "License"); | |
| * you may not use this file except in compliance with the License. | |
| * You may obtain a copy of the License at | |
| * | |
| * http://www.apache.org/licenses/LICENSE-2.0 | |
| * | |
| * Unless required by applicable law or agreed to in writing, software |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* | |
| * Copyright 2013-2014 the original author or authors. | |
| * | |
| * Licensed under the Apache License, Version 2.0 (the "License"); | |
| * you may not use this file except in compliance with the License. | |
| * You may obtain a copy of the License at | |
| * | |
| * http://www.apache.org/licenses/LICENSE-2.0 | |
| * | |
| * Unless required by applicable law or agreed to in writing, software |