Lockfile priority normalization

This commit is contained in:
2026-05-14 12:21:47 +02:00
parent 4449fa4f0e
commit 393e9a4e59
2 changed files with 67 additions and 1 deletions
+1 -1
View File
@@ -1110,7 +1110,7 @@ func pruneLockDataToActiveRows(lockData map[string]int, rows []map[string]any, r
}
updated := 0
for key, rowID := range activeKeys {
if lockedID, ok := lockData[key]; ok && lockedID != rowID {
if lockedID, ok := lockData[key]; !ok || lockedID != rowID {
lockData[key] = rowID
updated++
}