Skip to content

Commit

Permalink
fix(dbm-services): 解决备份表结构异常不退出问题 #7945
Browse files Browse the repository at this point in the history
  • Loading branch information
ymakedaq authored and iSecloud committed Nov 14, 2024
1 parent 411cc74 commit c74cc8b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -334,7 +334,7 @@ func (c *ImportSchemaFromBackendComp) migrateUseMysqlDump() (err error) {
Password: c.GeneralParam.RuntimeAccountParam.AdminPwd,
WorkDir: c.tmpDumpDir,
}
errChan := make(chan error, 1)
errChan := make(chan error)
wg := sync.WaitGroup{}
ctrChan := make(chan struct{}, c.maxThreads)
for _, db := range c.dumpDbs {
Expand Down

0 comments on commit c74cc8b

Please sign in to comment.