mirror of
https://gitee.com/fit2cloud-feizhiyun/1Panel.git
synced 2024-12-04 21:09:31 +08:00
fix: 解决创建数据库超时问题 (#1037)
This commit is contained in:
parent
25c2246782
commit
b966ab3e11
@ -554,7 +554,7 @@ func excuteSql(containerName, password, command string) error {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func excSQL(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()
|
defer cancel()
|
||||||
cmd := exec.CommandContext(ctx, "docker", "exec", containerName, "mysql", "-uroot", "-p"+password, "-e", command)
|
cmd := exec.CommandContext(ctx, "docker", "exec", containerName, "mysql", "-uroot", "-p"+password, "-e", command)
|
||||||
stdout, err := cmd.CombinedOutput()
|
stdout, err := cmd.CombinedOutput()
|
||||||
|
Loading…
Reference in New Issue
Block a user