Skip to content

Commit

Permalink
Set MySQL host ip to 127.0.0.1 in jenkins unittest step (#2905)
Browse files Browse the repository at this point in the history
Signed-off-by: quicksilver <zhifeng.zhang@zilliz.com>
  • Loading branch information
jeffoverflow authored and JinHai-CN committed Jul 18, 2020
1 parent 154c7ba commit 74aa4cd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ci/jenkins/step/unittest.groovy
@@ -1,5 +1,5 @@
timeout(time: 30, unit: 'MINUTES') {
dir ("ci/scripts") {
sh "./run_unittest.sh -i ${env.MILVUS_INSTALL_PREFIX} --mysql_user=root --mysql_password=123456 --mysql_host=\$POD_IP"
sh "./run_unittest.sh -i ${env.MILVUS_INSTALL_PREFIX} --mysql_user=root --mysql_password=123456 --mysql_host=\"127.0.0.1\""
}
}

0 comments on commit 74aa4cd

Please sign in to comment.