ignore table exists errors from integration testing at the azure functions layer (#1096)

This commit is contained in:
bmc-msft
2021-07-21 13:29:13 -04:00
committed by GitHub
parent 198d765cb4
commit 041d3cc204

View File

@ -791,7 +791,7 @@ class TestOnefuzz:
# which relate to azure-retry issues
if (
message.startswith("Client-Request-ID=")
and "ResourceNotFound" in message
and ("ResourceNotFound" in message or "TableAlreadyExists" in message)
and entry.get("sdkVersion", "").startswith("azurefunctions")
):
continue