File tree Expand file tree Collapse file tree 2 files changed +9
-0
lines changed
Expand file tree Collapse file tree 2 files changed +9
-0
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
55The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) ,
66and this project adheres to [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
77
8+ ## [ X.X.X] - 2025-02-XX
9+
10+ ### Fixed
11+
12+ * Resizing a non-existent service in an undeployed app no longer causes an error.
13+
814## [ 4.6.3] - 2024-11-04
915
1016### Fixed
Original file line number Diff line number Diff line change @@ -129,6 +129,9 @@ type DeployStatus struct {
129129}
130130
131131func (d * DeployStatus ) FindProcess (name string ) (* Process , error ) {
132+ if d == nil {
133+ return nil , fmt .Errorf ("process '%s' not found" , name )
134+ }
132135 for _ , p := range d .Processes {
133136 if p .Name == name {
134137 return & p , nil
You can’t perform that action at this time.
0 commit comments