Skip to content

Commit 2264a0d

Browse files
committed
Merge pull request #3419 from mboersma/dont-stop-cache
fix(deisctl): omit cache from `deisctl stop platform"
2 parents 78e4998 + db51c61 commit 2264a0d

1 file changed

Lines changed: 1 addition & 3 deletions

File tree

deisctl/cmd/cmd.go

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -270,8 +270,6 @@ func stopDefaultServices(b backend.Backend, wg *sync.WaitGroup, outchan chan str
270270
outchan <- fmt.Sprintf("Control plane...")
271271
b.Stop([]string{"controller", "builder", "database", "registry@*"}, wg, outchan, errchan)
272272
wg.Wait()
273-
b.Stop([]string{"cache"}, wg, outchan, errchan)
274-
wg.Wait()
275273

276274
outchan <- fmt.Sprintf("Logging subsystem...")
277275
b.Stop([]string{"logger", "logspout"}, wg, outchan, errchan)
@@ -512,7 +510,7 @@ func uninstallAllServices(b backend.Backend, wg *sync.WaitGroup, outchan chan st
512510
wg.Wait()
513511

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

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

0 commit comments

Comments
 (0)