From 1a8713b5ec0a5daf8aa7d3a3fbf52b01c1434ac5 Mon Sep 17 00:00:00 2001 From: Michael Dombrowski Date: Thu, 9 Feb 2023 07:29:14 -0500 Subject: [PATCH] test: ignore additional mqtt 5 error --- .../aws/greengrass/integrationtests/e2e/BaseE2ETestCase.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/integrationtests/java/com/aws/greengrass/integrationtests/e2e/BaseE2ETestCase.java b/src/integrationtests/java/com/aws/greengrass/integrationtests/e2e/BaseE2ETestCase.java index 75c4917437..e68e0d6bf6 100644 --- a/src/integrationtests/java/com/aws/greengrass/integrationtests/e2e/BaseE2ETestCase.java +++ b/src/integrationtests/java/com/aws/greengrass/integrationtests/e2e/BaseE2ETestCase.java @@ -193,6 +193,8 @@ void beforeEach(ExtensionContext context) { "Old requests from the previous session are cancelled"); ignoreExceptionUltimateCauseWithMessageSubstring(context, "client connection interrupted by user request"); + ignoreExceptionUltimateCauseWithMessageSubstring(context, + "client's offline queue retention policy"); } @BeforeAll