Skip to content

Commit

Permalink
fix regex link
Browse files Browse the repository at this point in the history
  • Loading branch information
k15r committed Feb 14, 2024
1 parent d5079b9 commit 7b400e0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/lint-conventional-prs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,5 +27,5 @@ jobs:
refactor
test
requireScope: false
# https://regex101.com/r/YybDgS/1
# https://regex101.com/r/pmEvPq/2
subjectPattern: ^(?![A-Z]).+$
2 changes: 2 additions & 0 deletions internal/loadtest/sender/legacyevent/sender.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ import (
"encoding/json"
"fmt"
"io"
"log"
"net/http"
"strings"
"time"
Expand Down Expand Up @@ -87,6 +88,7 @@ func (s *Sender) SendEvent(event events.Event) {
}
resp, err := s.client.Do(rq)
if err != nil {
log.Println(err)
s.undeliveredC <- event
return
}
Expand Down

0 comments on commit 7b400e0

Please sign in to comment.