From 4093a579b7754dc74440945da975c7fa8f1c1d8f Mon Sep 17 00:00:00 2001 From: Nick Wilde Date: Sat, 28 Oct 2017 12:50:23 -0700 Subject: [PATCH] Properly record ran post_update functions. (#3547) --- src/Command/Update/ExecuteCommand.php | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Command/Update/ExecuteCommand.php b/src/Command/Update/ExecuteCommand.php index fadfb410e..e70e13fbe 100644 --- a/src/Command/Update/ExecuteCommand.php +++ b/src/Command/Update/ExecuteCommand.php @@ -301,6 +301,7 @@ private function runPostUpdates(DrupalStyle $io) $function, $context ); + $this->postUpdateRegistry->registerInvokedUpdates([$function]); } }