1
0
Fork 0

Fixed another cluster indexes bug.

This commit is contained in:
Michael Hackstein 2016-01-27 14:24:00 +01:00
parent 32c159f352
commit 19cfa3429c
1 changed files with 1 additions and 1 deletions

View File

@ -1656,7 +1656,7 @@ int ClusterInfo::ensureIndexCoordinator(
{
// Copy over all elements in slice.
VPackObjectBuilder b(&resultBuilder);
for (auto const& entry : VPackObjectIterator(slice)) {
for (auto const& entry : VPackObjectIterator(other)) {
resultBuilder.add(entry.key.copyString(), entry.value);
}
resultBuilder.add("isNewlyCreated", VPackValue(false));