Skip to content

Commit ac5fb9e

Browse files
committed
Fix #718
1 parent 7bb6808 commit ac5fb9e

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

internal/hook/hook.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -824,7 +824,7 @@ func (r Rules) Evaluate(req *Request) (bool, error) {
824824
return r.Match.Evaluate(req)
825825
}
826826

827-
return false, nil
827+
return true, nil
828828
}
829829

830830
// AndRule will evaluate to true if and only if all of the ChildRules evaluate to true

webhook.go

+4-4
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import (
55
"encoding/json"
66
"flag"
77
"fmt"
8-
"io/ioutil"
8+
"io"
99
"log"
1010
"net"
1111
"net/http"
@@ -172,7 +172,7 @@ func main() {
172172
}
173173

174174
if !*verbose {
175-
log.SetOutput(ioutil.Discard)
175+
log.SetOutput(io.Discard)
176176
}
177177

178178
// Create pidfile
@@ -379,7 +379,7 @@ func hookHandler(w http.ResponseWriter, r *http.Request) {
379379
isMultipart := strings.HasPrefix(req.ContentType, "multipart/form-data;")
380380

381381
if !isMultipart {
382-
req.Body, err = ioutil.ReadAll(r.Body)
382+
req.Body, err = io.ReadAll(r.Body)
383383
if err != nil {
384384
log.Printf("[%s] error reading the request body: %+v\n", req.ID, err)
385385
}
@@ -608,7 +608,7 @@ func handleHook(h *hook.Hook, r *hook.Request) (string, error) {
608608
}
609609

610610
for i := range files {
611-
tmpfile, err := ioutil.TempFile(h.CommandWorkingDirectory, files[i].EnvName)
611+
tmpfile, err := os.CreateTemp(h.CommandWorkingDirectory, files[i].EnvName)
612612
if err != nil {
613613
log.Printf("[%s] error creating temp file [%s]", r.ID, err)
614614
continue

0 commit comments

Comments
 (0)