fix(): remove "done" statement at execution end

This commit is contained in:
Nicolas Carlier 2020-02-01 08:48:43 +00:00
parent 28288739f3
commit 57e5b79011
2 changed files with 1 additions and 3 deletions

View File

@ -5,7 +5,7 @@ import (
"github.com/ncarlier/webhookd/pkg/model"
)
// WorkerQueue is the gloabl queue of Workers
// WorkerQueue is the global queue of Workers
var WorkerQueue chan chan model.WorkRequest
// WorkQueue is the global queue of work to dispatch

View File

@ -49,8 +49,6 @@ func (w Worker) Start() {
if err != nil {
metric.RequestsFailed.Add(1)
work.MessageChan <- []byte(fmt.Sprintf("error: %s", err.Error()))
} else {
work.MessageChan <- []byte("done")
}
// Send notification
notification.Notify(&work)