File tree Expand file tree Collapse file tree 1 file changed +2
-1
lines changed
server/src/test/java/org/elasticsearch/common/cache Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -347,7 +347,8 @@ protected long now() {
347347 @ AwaitsFix (bugUrl = "https://github.com/elastic/elasticsearch/issues/30428" )
348348 public void testComputeIfAbsentDeadlock () throws BrokenBarrierException , InterruptedException {
349349 final int numberOfThreads = randomIntBetween (2 , 32 );
350- final Cache <Integer , String > cache = CacheBuilder .<Integer , String >builder ().setExpireAfterAccess (TimeValue .timeValueNanos (1 )).build ();
350+ final Cache <Integer , String > cache =
351+ CacheBuilder .<Integer , String >builder ().setExpireAfterAccess (TimeValue .timeValueNanos (1 )).build ();
351352
352353 final CyclicBarrier barrier = new CyclicBarrier (1 + numberOfThreads );
353354 for (int i = 0 ; i < numberOfThreads ; i ++) {
You can’t perform that action at this time.
0 commit comments