fix: 解决创建数据库超时问题 (#1037)

This commit is contained in:
zhengkunwang223 2023-05-14 09:34:31 +08:00 committed by GitHub
parent 25c2246782
commit b966ab3e11
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -554,7 +554,7 @@ func excuteSql(containerName, password, command string) error {
}
func excSQL(containerName, password, command string) error {
ctx, cancel := context.WithTimeout(context.Background(), 1*time.Second)
ctx, cancel := context.WithTimeout(context.Background(), 2*time.Second)
defer cancel()
cmd := exec.CommandContext(ctx, "docker", "exec", containerName, "mysql", "-uroot", "-p"+password, "-e", command)
stdout, err := cmd.CombinedOutput()