fix(backend): HKR rets wrong deletion keys

This commit is contained in:
2025-12-28 23:48:20 +00:00
parent fdfad036f8
commit 0933c19c5e

View File

@@ -37,7 +37,7 @@ func (r *HierarchicalKeyResolver) ResolveDeletionKeys(ctx context.Context, node
if err != nil {
return nil, err
}
return &DeletionPlan{Prefix: blob.Key(path)}, nil
return &DeletionPlan{Prefix: blob.Key(fmt.Sprintf("%s/%s", node.AccountID, path))}, nil
}
// ResolveBulkMoveOps computes blob move operations for nodes being moved to a new parent.