(interface{})
| 160 | } |
| 161 | |
| 162 | func (info *RuntimeInfo) opRollbackSet(interface{}) error { |
| 163 | logs.V(5).Infof("occupy runtime %s concurrency %d status %s", info.RuntimeID, info.Concurrency, info.State) |
| 164 | if info.State == RuntimeStateWarmUp { |
| 165 | info.Concurrency-- |
| 166 | } |
| 167 | info.SetState(RuntimeStateCold) |
| 168 | info.updateStreamMode(false) |
| 169 | info.SetResource(0, 0) |
| 170 | info.SetCommitID("") |
| 171 | info.SetMarked(false) |
| 172 | return nil |
| 173 | } |
| 174 | |
| 175 | /////////////////////////////////////mark event |
| 176 |
nothing calls this directly
no test coverage detected