typo in error message

This commit is contained in:
Adam Majer 2024-09-10 17:34:16 +02:00
parent d639df5abb
commit 60705dc939

View File

@ -50,7 +50,7 @@ func PublishMessage(giteaOrg, giteaWebhookType, action string, data []byte) erro
select {
case messageQueue <- msg:
default:
return errors.New("Enable to queue message. Possibly queue full.")
return errors.New("Unable to queue message. Possibly queue full.")
}
return nil
}