From efc22bed82b638b4854ddbff8547bb60954c5367 Mon Sep 17 00:00:00 2001 From: David Turner Date: Tue, 27 Apr 2021 16:13:27 +0100 Subject: [PATCH] Longer timeout in RepositoryAnalysisSuccessIT (#72314) In #72229 a test run was observed to exceed this 5-second timeout. This commit increases it to 20 seconds. --- .../blobstore/testkit/RepositoryAnalysisSuccessIT.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/x-pack/plugin/snapshot-repo-test-kit/src/internalClusterTest/java/org/elasticsearch/repositories/blobstore/testkit/RepositoryAnalysisSuccessIT.java b/x-pack/plugin/snapshot-repo-test-kit/src/internalClusterTest/java/org/elasticsearch/repositories/blobstore/testkit/RepositoryAnalysisSuccessIT.java index 0573dc8eff2a2..fe6a48fa6dde7 100644 --- a/x-pack/plugin/snapshot-repo-test-kit/src/internalClusterTest/java/org/elasticsearch/repositories/blobstore/testkit/RepositoryAnalysisSuccessIT.java +++ b/x-pack/plugin/snapshot-repo-test-kit/src/internalClusterTest/java/org/elasticsearch/repositories/blobstore/testkit/RepositoryAnalysisSuccessIT.java @@ -115,7 +115,7 @@ public void testRepositoryAnalysis() { blobStore.ensureMaxTotalBlobSize(request.getMaxTotalDataSize().getBytes()); } - request.timeout(TimeValue.timeValueSeconds(5)); + request.timeout(TimeValue.timeValueSeconds(20)); final RepositoryAnalyzeAction.Response response = client().execute(RepositoryAnalyzeAction.INSTANCE, request) .actionGet(30L, TimeUnit.SECONDS);