Stop stops the management server.
()
| 238 | |
| 239 | // Stop stops the management server. |
| 240 | func (s *ManagementServer) Stop() { |
| 241 | if s.cancel != nil { |
| 242 | s.cancel() |
| 243 | } |
| 244 | s.gs.Stop() |
| 245 | } |
| 246 | |
| 247 | // resourceSlice accepts a slice of any type of proto messages and returns a |
| 248 | // slice of types.Resource. Will panic if there is an input type mismatch. |