Skip to content

Commit

Permalink
test(AWS Lambda): Recognize EFSIOException error as recoverable
Browse files Browse the repository at this point in the history
  • Loading branch information
medikoo committed Sep 2, 2020
1 parent c0fb04a commit ee2355e
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion test/integration-all/file-system-config/tests.js
Expand Up @@ -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
Expand Down

0 comments on commit ee2355e

Please sign in to comment.