Преглед изворни кода

Close the temp file when dumping database to make the temp file can be deleted on Windows (#23249)

There was no `dbDump.Close()` before, Windows doesn't like to delete
opened files.
tags/v1.20.0-rc0
wxiaoguang пре 1 година
родитељ
комит
294124d129
No account linked to committer's email address
1 измењених фајлова са 1 додато и 0 уклоњено
  1. 1
    0
      cmd/dump.go

+ 1
- 0
cmd/dump.go Прегледај датотеку

@@ -272,6 +272,7 @@ func runDump(ctx *cli.Context) error {
fatal("Failed to create tmp file: %v", err)
}
defer func() {
_ = dbDump.Close()
if err := util.Remove(dbDump.Name()); err != nil {
log.Warn("Unable to remove temporary file: %s: Error: %v", dbDump.Name(), err)
}

Loading…
Откажи
Сачувај