mirror of
https://github.com/ncarlier/webhookd.git
synced 2025-04-06 16:50:36 +00:00
fix: Fix typo.
This commit is contained in:
parent
8978ddf4f4
commit
79def293f0
|
@ -22,7 +22,7 @@ func StartDispatcher(nworkers int) {
|
|||
for {
|
||||
select {
|
||||
case work := <-WorkQueue:
|
||||
fmt.Println("Received work requeust")
|
||||
fmt.Println("Received work request")
|
||||
go func() {
|
||||
worker := <-WorkerQueue
|
||||
|
||||
|
|
|
@ -42,7 +42,7 @@ func (w Worker) Start() {
|
|||
filename, err := RunScript(&work)
|
||||
if err != nil {
|
||||
subject := fmt.Sprintf("Webhook %s/%s FAILED.", work.Name, work.Action)
|
||||
Notify(subject, err.Error(), "")
|
||||
Notify(subject, err.Error(), filename)
|
||||
} else {
|
||||
subject := fmt.Sprintf("Webhook %s/%s SUCCEEDED.", work.Name, work.Action)
|
||||
Notify(subject, "See attachment.", filename)
|
||||
|
@ -72,7 +72,7 @@ func Notify(subject string, text string, outfilename string) {
|
|||
return
|
||||
}
|
||||
if notifier == nil {
|
||||
fmt.Println("Notification provideri not found.")
|
||||
fmt.Println("Notification provider not found.")
|
||||
return
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user