mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 05:37:39 +03:00
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:
parent
99cca59d6e
commit
8699c98ad8
1 changed files with 2 additions and 0 deletions
|
@ -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);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue