Set MySQL host ip to 127.0.0.1 in jenkins unittest step (#2905)

Signed-off-by: quicksilver <zhifeng.zhang@zilliz.com>
pull/2906/head
quicksilver 2020-07-18 10:21:04 +08:00 committed by GitHub
parent 8046f2946e
commit 9efddeee15
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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\""
}
}