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() {
347
347
@ AwaitsFix (bugUrl = "https://github.com/elastic/elasticsearch/issues/30428" )
348
348
public void testComputeIfAbsentDeadlock () throws BrokenBarrierException , InterruptedException {
349
349
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 ();
351
352
352
353
final CyclicBarrier barrier = new CyclicBarrier (1 + numberOfThreads );
353
354
for (int i = 0 ; i < numberOfThreads ; i ++) {
You can’t perform that action at this time.
0 commit comments