(args interface{})
| 267 | } |
| 268 | |
| 269 | func (info *RuntimeInfo) opResetCheck(args interface{}) error { |
| 270 | params := args.(*ResetInput) |
| 271 | |
| 272 | if info.IsRunnerDefunct(params.Deadline) { |
| 273 | return nil |
| 274 | } |
| 275 | |
| 276 | return &RuntimeNoNeedToReset{ |
| 277 | RuntimeID: info.RuntimeID, |
| 278 | } |
| 279 | } |
| 280 | |
| 281 | // opStopSet |
| 282 | func (info *RuntimeInfo) opResetSet(interface{}) error { |
nothing calls this directly
no test coverage detected