This commit is contained in:
Neil Macneale IV
2025-12-15 15:47:56 -08:00
parent 9763c9e7e6
commit 3741b497dd
+1 -1
View File
@@ -43,7 +43,7 @@ func NewParentsClosure(ctx context.Context, c *Commit, sv types.SerialMessage, v
return prolly.CommitClosure{}, err
}
if types.IsNull(v) {
return prolly.CommitClosure{}, fmt.Errorf("internal error or data loss: dangling commit parent closure for addr %s or commit %s", addr.String(), c.Addr().String())
return prolly.CommitClosure{}, fmt.Errorf("internal error or data loss: dangling commit parent closure for addr %s for commit %s", addr.String(), c.Addr().String())
}
node, fileId, err := tree.NodeFromBytes(v.(types.SerialMessage))
if err != nil {