gofmt
This commit is contained in:
parent
d9d644b27f
commit
17680fff55
@ -211,7 +211,7 @@ Response:
|
||||
```json
|
||||
{
|
||||
"Version": "string value",
|
||||
"APIVersion": 3840,
|
||||
"APIVersion": 3584,
|
||||
"BlockDelay": 42
|
||||
}
|
||||
```
|
||||
|
3
extern/sector-storage/manager_calltracker.go
vendored
3
extern/sector-storage/manager_calltracker.go
vendored
@ -23,6 +23,7 @@ func (w WorkID) String() string {
|
||||
var _ fmt.Stringer = &WorkID{}
|
||||
|
||||
type WorkStatus string
|
||||
|
||||
const (
|
||||
wsStarted WorkStatus = "started" // task started, not scheduled/running on a worker yet
|
||||
wsRunning WorkStatus = "running" // task running on a worker, waiting for worker return
|
||||
@ -198,7 +199,7 @@ func (m *Manager) waitWork(ctx context.Context, wid WorkID) (interface{}, error)
|
||||
log.Errorf("marking work as done: %+v", err)
|
||||
}
|
||||
|
||||
res := <- cr
|
||||
res := <-cr
|
||||
delete(m.callRes, ws.WorkerCall)
|
||||
|
||||
m.workLk.Unlock()
|
||||
|
Loading…
Reference in New Issue
Block a user