Skip to content

Commit 74a4d78

Browse files
committed
Add compose update in runner migration fn
Signed-off-by: Riddhesh Sanghvi <[email protected]>
1 parent 02b3fcf commit 74a4d78

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

php/EE/Migration/Containers.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ public static function start_container_migration() {
5858
}
5959

6060
if ( empty( $updated_images ) ) {
61-
self::maybe_update_docker_compose();
61+
6262
return;
6363
}
6464

php/EE/Runner.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -138,6 +138,7 @@ private function migrate() {
138138
$rsp->add_step( 'ee-db-migrations', 'EE\Migration\Executor::execute_migrations' );
139139
$rsp->add_step( 'ee-custom-container-migrations', 'EE\Migration\CustomContainerMigrations::execute_migrations' );
140140
$rsp->add_step( 'ee-docker-image-migrations', 'EE\Migration\Containers::start_container_migration' );
141+
$rsp->add_step( 'ee-update-docker-compose', 'EE\Migration\Containers::update_docker_compose' );
141142
return $rsp->execute();
142143
}
143144

0 commit comments

Comments
 (0)