ignore more errors (#416)

This commit is contained in:
Marc Brugger 2024-10-03 22:07:01 +02:00 committed by GitHub
parent 095af716c9
commit 4b4e6b1c72
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -6,7 +6,10 @@ for pod in $(kubectl get pods -l bakito.net/adguardhome-sync=replica -o name); d
echo '```' >> $GITHUB_STEP_SUMMARY
LOGS=$(kubectl logs ${pod})
# ignore certain errors
LOGS=$(echo -e "${LOGS}" | grep -v -e "error.* deleting filter .* no such file or directory" )
LOGS=$(echo -e "${LOGS}" |
grep -v -e "error.* deleting filter .* no such file or directory" |
grep -v "storage: recovered from panic: runtime error: invalid memory address or nil pointer dereference" # https://github.com/AdguardTeam/AdGuardHome/issues/7315
)
# https://github.com/AdguardTeam/AdGuardHome/issues/4944
LOGS=$(echo -e "${LOGS}" | grep -v -e "error.* creating dhcpv4 srv")
echo -e "${LOGS}" >> $GITHUB_STEP_SUMMARY