Revert f9554a02e4b75e87c5b44085b68f84e69100c9d8

Do not "Limit the number of unstable versions per object" - LSMeta doesn't need it
This commit is contained in:
Vitaliy Filippov
2025-12-02 01:52:12 +03:00
parent 378fff6f67
commit 5607222921
5 changed files with 12 additions and 32 deletions
+2 -2
View File
@@ -790,9 +790,9 @@ resume_5:
if (immediate_commit == IMMEDIATE_NONE)
{
unstable_write_count++;
if (unstable_write_count >= autosync_writes ||
unstable_per_object >= autosync_dirty_per_object)
if (unstable_write_count >= autosync_writes)
{
unstable_write_count = 0;
autosync();
}
}