Merge remote-tracking branch 'source/branch-0.4.0' into branch-0.4.0

Former-commit-id: 60a150ae5fa752e083ceb53e4492ae425f38ffb7
pull/191/head
starlord 2019-09-03 17:10:08 +08:00
commit 6376caae03
2 changed files with 7 additions and 1 deletions

View File

@ -22,6 +22,7 @@ Please mark all change in change log and use the ticket from JIRA.
- MS-461 - Mysql meta unittest failed
- MS-462 - Run milvus server twices, should display error
- MS-463 - Search timeout
- MS-467 - mysql db test failed
## Improvement
- MS-327 - Clean code for milvus

View File

@ -124,7 +124,12 @@ zilliz::milvus::engine::DBMetaOptions MySQLTest::getDBMetaOptions() {
zilliz::milvus::engine::Options MySQLDBTest::GetOptions() {
auto options = engine::OptionsFactory::Build();
options.meta.path = "/tmp/milvus_test";
options.meta.backend_uri = DBTestEnvironment::getURI();
if(options.meta.backend_uri.empty()) {
options.meta.backend_uri = "mysql://root:Fantast1c@192.168.1.194:3306/";
}
return options;
}