Skip to content

Commit

Permalink
Longer timeout in RepositoryAnalysisSuccessIT (elastic#72314)
Browse files Browse the repository at this point in the history
In elastic#72229 a test run was observed to exceed this 5-second timeout. This
commit increases it to 20 seconds.
  • Loading branch information
DaveCTurner authored Apr 27, 2021
1 parent e002aa8 commit efc22be
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit efc22be

Please sign in to comment.