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 150120c commit cc6dd45Copy full SHA for cc6dd45
cmd/serve.go
@@ -166,7 +166,9 @@ to interact and monitor the Scroll Application`,
166
finish := coldStarter.Start(ctx)
167
executedPort := <-finish
168
169
- if executedPort == nil || executedPort.FinishAfterCommand == "" {
+ if executedPort == nil {
170
+ coldStarter.Stop(0)
171
+ } else if executedPort.FinishAfterCommand == "" {
172
coldStarter.Stop(executedPort.StartDelay)
173
}
174
0 commit comments