Browse Source

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

pull/1057/head
zhengkunwang223 2 years ago committed by GitHub
parent
commit
b966ab3e11
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      backend/app/service/database_mysql.go

2
backend/app/service/database_mysql.go

@ -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…
Cancel
Save