From ee2355eb85473f6e01fa924c9991131a8b7a2cf5 Mon Sep 17 00:00:00 2001 From: Mariusz Nowak Date: Wed, 2 Sep 2020 09:53:23 +0200 Subject: [PATCH] test(AWS Lambda): Recognize EFSIOException error as recoverable --- test/integration-all/file-system-config/tests.js | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/test/integration-all/file-system-config/tests.js b/test/integration-all/file-system-config/tests.js index 9251522b763..bd68b35b96d 100644 --- a/test/integration-all/file-system-config/tests.js +++ b/test/integration-all/file-system-config/tests.js @@ -12,7 +12,11 @@ const { createTestService, deployService, removeService } = require('../../utils const EFS_MAX_PROPAGATION_TIME = 1000 * 60 * 5; -const retryableMountErrors = new Set(['EFSMountFailureException', 'EFSMountTimeoutException']); +const retryableMountErrors = new Set([ + 'EFSMountFailureException', + 'EFSMountTimeoutException', + 'EFSIOException', +]); describe('AWS - FileSystemConfig Integration Test', function() { this.timeout(1000 * 60 * 100); // Involves time-taking deploys