Skip to content

Commit db51c61

Browse files
committed
fix(deisctl): omit cache from `deisctl uninstall platform"
1 parent 0e93e47 commit db51c61

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

deisctl/cmd/cmd.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -510,7 +510,7 @@ func uninstallAllServices(b backend.Backend, wg *sync.WaitGroup, outchan chan st
510510
wg.Wait()
511511

512512
outchan <- fmt.Sprintf("Control plane...")
513-
b.Destroy([]string{"controller", "builder", "cache", "database", "registry@*"}, wg, outchan, errchan)
513+
b.Destroy([]string{"controller", "builder", "database", "registry@*"}, wg, outchan, errchan)
514514
wg.Wait()
515515

516516
outchan <- fmt.Sprintf("Logging subsystem...")

0 commit comments

Comments
 (0)