Skip to content
This repository has been archived by the owner on Sep 22, 2020. It is now read-only.

mfile: output data with correct format #436

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion storage/mfile.go
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,7 @@ func (m *mfileBlock) WriteBlock(_ context.Context, s torus.BlockRef, data []byte
olddata := m.dataFile.GetBlock(uint64(v))
if !bytes.Equal(olddata, data) {
clog.Error("getting wrong data for block: ", s)
clog.Errorf("%s, %s", olddata[:10], data[:10])
clog.Errorf("old: %v, new: %v", olddata[:10], data[:10])
return torus.ErrExists
}
// Not an error, if we already have it
Expand Down