add synchronization to prevent race condition on worker shutdown
This commit is contained in:
parent
b902646ce8
commit
0bae664968
@ -111,6 +111,9 @@ func (a *agent) work() {
|
||||
}
|
||||
|
||||
func (a *agent) disconnect_error(err error) {
|
||||
a.Unlock()
|
||||
defer a.Unlock()
|
||||
|
||||
if a.conn != nil {
|
||||
err = &WorkerDisconnectError{
|
||||
err: err,
|
||||
|
@ -4,9 +4,9 @@ package worker
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
"strconv"
|
||||
"sync"
|
||||
"time"
|
||||
"strconv"
|
||||
)
|
||||
|
||||
const (
|
||||
@ -186,7 +186,7 @@ func (worker *Worker) Ready() (err error) {
|
||||
return
|
||||
}
|
||||
|
||||
// Main loop, block here
|
||||
// Work start main loop (blocking)
|
||||
// Most of time, this should be evaluated in goroutine.
|
||||
func (worker *Worker) Work() {
|
||||
if !worker.ready {
|
||||
@ -197,7 +197,10 @@ func (worker *Worker) Work() {
|
||||
}
|
||||
}
|
||||
|
||||
worker.Lock()
|
||||
worker.running = true
|
||||
worker.Unlock()
|
||||
|
||||
for _, a := range worker.agents {
|
||||
a.Grab()
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user