util.datamanager: Disable block alignment

Until we have more test coverage. Somehow the index becomes incorrect
after inserting padding, unclear why.
This commit is contained in:
Kim Alvefur 2023-07-21 18:03:22 +02:00
parent 99cca59d6e
commit 8699c98ad8

View file

@ -245,12 +245,14 @@ local function append(username, host, datastore, ext, data)
end
local pos = f:seek("end");
--[[ TODO needs tests
if (blocksize-(pos%blocksize)) < (#data%blocksize) then
-- pad to blocksize with newlines so that the next item is both on a new
-- block and a new line
atomic_append(f, ("\n"):rep(blocksize-(pos%blocksize)));
pos = f:seek("end");
end
--]]
local ok, msg = atomic_append(f, data);