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.
2 parents 7537a42 + 3dca583 commit e16f4b9Copy full SHA for e16f4b9
php/EE/Migration/GlobalContainers.php
@@ -164,8 +164,10 @@ public static function disable_support_containers() {
164
}
165
166
$command = \EE_DOCKER::docker_compose_with_custom() . ' --project-name=ee down';
167
- if ( ! EE::exec( $command ) ) {
168
- throw new \Exception( 'Unable to remove support container.' );
169
- }
+ /**
+ * Return code can be 1 due to error in removing network. This is expected.
+ * TODO: Get a fix for global network / make them external so that the return code is not 1.
170
+ */
171
+ EE::exec( $command );
172
173
0 commit comments