Skip to content

Commit

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

Please sign in to comment.