mirror of
https://github.com/microsoft/onefuzz.git
synced 2025-06-15 11:28:09 +00:00
ignore table exists errors from integration testing at the azure functions layer (#1096)
This commit is contained in:
@ -791,7 +791,7 @@ class TestOnefuzz:
|
|||||||
# which relate to azure-retry issues
|
# which relate to azure-retry issues
|
||||||
if (
|
if (
|
||||||
message.startswith("Client-Request-ID=")
|
message.startswith("Client-Request-ID=")
|
||||||
and "ResourceNotFound" in message
|
and ("ResourceNotFound" in message or "TableAlreadyExists" in message)
|
||||||
and entry.get("sdkVersion", "").startswith("azurefunctions")
|
and entry.get("sdkVersion", "").startswith("azurefunctions")
|
||||||
):
|
):
|
||||||
continue
|
continue
|
||||||
|
Reference in New Issue
Block a user