We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b479268 commit 2a1bc0eCopy full SHA for 2a1bc0e
php/EE/Migration/Containers.php
@@ -28,11 +28,12 @@ public static function start_container_migration() {
28
$updated_images = [];
29
30
foreach ( $img_versions as $img => $version ) {
31
- if ( 'easyengine/php5.6' === $img ) {
32
- continue;
33
- }
34
- if ( $current_versions[ $img ] !== $version ) {
35
- $updated_images[] = $img;
+ if ( array_key_exists( $img, $current_versions ) ) {
+ if ( $current_versions[ $img ] !== $version ) {
+ $updated_images[] = $img;
+ self::pull_or_error( $img, $version );
+ }
36
+ } else {
37
self::pull_or_error( $img, $version );
38
}
39
0 commit comments