(err error)
| 251 | } |
| 252 | |
| 253 | func (invocation *Invocation) DoneUploadFile(err error) { |
| 254 | if err != nil { |
| 255 | invocation.err = err |
| 256 | } |
| 257 | atomic.AddInt32(&invocation.waitUploads, -1) |
| 258 | invocation.wgUpload.Done() // will end up after all required files uploaded/failed |
| 259 | } |
| 260 | |
| 261 | func (invocation *Invocation) ForceInterrupt(err error) { |
| 262 | logClient.Error("force interrupt", "sessionID", invocation.sessionID, "remoteHost", invocation.summary.remoteHost, invocation.cppInFile, err) |
no outgoing calls
no test coverage detected