Skip to content

Stop flooding cache logs on client disconnection/context cancelation #3508

Stop flooding cache logs on client disconnection/context cancelation

Stop flooding cache logs on client disconnection/context cancelation #3508

Workflow file for this run

name: Pull request checks
on:
push:
branches: [ 'main', 'release-*' ]
pull_request:
branches: [ 'main', 'release-*' ]
jobs:
test:
name: test
runs-on: ubuntu-latest
strategy:
matrix:
go: [ '1.23' ]
steps:
- uses: actions/checkout@v3
with:
lfs: true
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: ${{ matrix.go }}
- name: Run verification and unit tests
run: make verify cov-exclude-generated
- name: Report coverage
uses: codecov/codecov-action@v4
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
with:
file: ./testoutput/cover.txt
flags: unittests