Skip to content

Commit d7fe36a

Browse files
authored
Merge pull request #10 from Keloran/consoleOutput
added console output for failure
2 parents 6cd413f + 76438a8 commit d7fe36a

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

.github/workflows/pulls.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
version: v1.46
2727
args: --config ./golangci.yml
2828
- name: test
29-
run: go test -v -race -bench=./... -benchmem -timeout=120s -bench=./... ./...
29+
run: go test -v -race -bench=./... -benchmem -timeout=120s ./...
3030
automerge:
3131
runs-on: ubuntu-latest
3232
permissions:

healthcheck.go

+1
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ func HTTP(w http.ResponseWriter, r *http.Request) {
3030
if fErr != nil {
3131
fmt.Printf("write response: %v\n", fErr)
3232
}
33+
fmt.Printf("http health failed: %+v\n", err)
3334
return
3435
}
3536

0 commit comments

Comments
 (0)