fix: Fix typo.

This commit is contained in:
Nicolas Carlier 2014-11-06 16:03:23 +00:00
parent 8978ddf4f4
commit 79def293f0
2 changed files with 3 additions and 3 deletions

View File

@ -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

View File

@ -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
}