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 4da5dbc commit 5b1dbf2Copy full SHA for 5b1dbf2
internal/orchestrator/orchestrator.go
@@ -897,15 +897,9 @@ func CloneApp(
897
898
funcDeleteApp(ctx context.Context, dockerClient command.Cli, app app.ArduinoApp) error{
899
900
-runningApp, err:=getRunningApp(ctx, dockerClient.Client())
901
-iferr!=nil{
902
-returnerr
903
- }
904
-ifrunningApp!=nil&&runningApp.FullPath.EqualsTo(app.FullPath){
905
-// We try to remove docker related resources at best effort
906
-forrangeStopAndDestroyApp(ctx, dockerClient, app){
907
-// just consume the iterator
908
+// We try to remove docker related resources at best effort
+forrangeStopAndDestroyApp(ctx, dockerClient, app){
+// just consume the iterator
909
}
910
911
returnapp.FullPath.RemoveAll()
0 commit comments