+1 offset applies to Format description header as well

This commit is contained in:
Shlomi Noach 2017-01-01 14:39:08 +02:00
Родитель 054bfe2bf6
Коммит a1edbf963f
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -152,7 +152,7 @@ func MySQLBinlogBinaryContents(binlogFiles []string, startPosition int64, stopPo
}
{
// magic header
cmd := fmt.Sprintf("cat %s | head -c%d >> %s", binlogFiles[0], 120, tmpFile.Name())
cmd := fmt.Sprintf("cat %s | head -c%d >> %s", binlogFiles[0], (120 + 1), tmpFile.Name())
if _, err := commandOutput(sudoCmd(cmd)); err != nil {
return "", err
}