From 1ef94098179fae5ed6148b3372503a895a88d190 Mon Sep 17 00:00:00 2001 From: epriestley Date: Thu, 20 Jun 2019 12:11:07 -0700 Subject: [PATCH] Update "arcanist/" for "topological" API changes Summary: Ref T13325. Test Plan: Grepped for `topograph`. Reviewers: amckinley Reviewed By: amckinley Maniphest Tasks: T13325 Differential Revision: https://secure.phabricator.com/D20598 --- src/workflow/ArcanistPatchWorkflow.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/workflow/ArcanistPatchWorkflow.php b/src/workflow/ArcanistPatchWorkflow.php index c3fd8296..b7938b3c 100644 --- a/src/workflow/ArcanistPatchWorkflow.php +++ b/src/workflow/ArcanistPatchWorkflow.php @@ -939,7 +939,7 @@ EOTEXT 'is not guaranteed to work. Continue anyway?'); $okay = phutil_console_confirm($issue, true); } else { - $phids = $graph->getTopographicallySortedNodes(); + $phids = $graph->getNodesInTopologicalOrder(); $phids = array_reverse($phids); $okay = true; }