1
0
Fork 0
mirror of synced 2025-04-03 13:23:37 +03:00

Hotfix for missing reverse dependency in case of non-implicit change tracking policies

This commit is contained in:
Guilherme Blanco 2015-12-01 20:24:16 +00:00
parent 9b77ba2c1a
commit 3c3b7364ba

View file

@ -162,7 +162,8 @@ class CommitOrderCalculator
break; break;
case self::IN_PROGRESS: case self::IN_PROGRESS:
if ($adjacentVertex->dependencyList[$vertex->hash]->weight < $edge->weight) { if (isset($adjacentVertex->dependencyList[$vertex->hash]) &&
$adjacentVertex->dependencyList[$vertex->hash]->weight < $edge->weight) {
$adjacentVertex->state = self::VISITED; $adjacentVertex->state = self::VISITED;
$this->sortedNodeList[] = $adjacentVertex->value; $this->sortedNodeList[] = $adjacentVertex->value;
@ -180,4 +181,4 @@ class CommitOrderCalculator
$this->sortedNodeList[] = $vertex->value; $this->sortedNodeList[] = $vertex->value;
} }
} }
} }