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 2b3db88 commit 12e7ccbCopy full SHA for 12e7ccb
internal/orchestrator/cache.go
@@ -32,7 +32,9 @@ func CleanAppCache(
32
return ErrCleanCacheRunningApp
33
}
34
// We try to remove docker related resources at best effort
35
- _ = StopAndDestroyApp(ctx, app)
+ for range StopAndDestroyApp(ctx, app) {
36
+ // just consume the iterator
37
+ }
38
39
40
return app.ProvisioningStateDir().RemoveAll()
0 commit comments