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.
2 parents 7316b14 + 9092cca commit 06a0bf3Copy full SHA for 06a0bf3
pkg/internal/testing/integration/apiserver.go
@@ -125,7 +125,10 @@ func (s *APIServer) setProcessState() error {
125
// Stop stops this process gracefully, waits for its termination, and cleans up
126
// the CertDir if necessary.
127
func (s *APIServer) Stop() error {
128
- return s.processState.Stop()
+ if s.processState != nil {
129
+ return s.processState.Stop()
130
+ }
131
+ return nil
132
}
133
134
// APIServerDefaultArgs exposes the default args for the APIServer so that you
0 commit comments