Fix node authorizer index recomputation

This commit is contained in:
Jordan Liggitt
2020-01-30 09:29:38 -05:00
parent cad44602e1
commit d8c00b7f52
2 changed files with 234 additions and 1 deletions

View File

@@ -189,7 +189,7 @@ func (g *Graph) deleteVertex_locked(vertexType vertexType, namespace, name strin
neighborsToRemove = append(neighborsToRemove, neighbor)
} else {
// recompute the destination edge index on this neighbor
neighborsToRecompute = append(neighborsToRemove, neighbor)
neighborsToRecompute = append(neighborsToRecompute, neighbor)
}
return true
})