Fix newlines in retention lease sync action tests
There is a method invocation here spanning multiple lines. This commit breaks it up into a line per parameter as this is friendlier to future changes and diffs.
This commit is contained in:
parent
3801925cf0
commit
f24dce1122
|
@ -70,8 +70,13 @@ public class RetentionLeaseSyncActionTests extends ESTestCase {
|
|||
threadPool = new TestThreadPool(getClass().getName());
|
||||
transport = new CapturingTransport();
|
||||
clusterService = createClusterService(threadPool);
|
||||
transportService = transport.createTransportService(clusterService.getSettings(), threadPool,
|
||||
TransportService.NOOP_TRANSPORT_INTERCEPTOR, boundAddress -> clusterService.localNode(), null, Collections.emptySet());
|
||||
transportService = transport.createTransportService(
|
||||
clusterService.getSettings(),
|
||||
threadPool,
|
||||
TransportService.NOOP_TRANSPORT_INTERCEPTOR,
|
||||
boundAddress -> clusterService.localNode(),
|
||||
null,
|
||||
Collections.emptySet());
|
||||
transportService.start();
|
||||
transportService.acceptIncomingRequests();
|
||||
shardStateAction = new ShardStateAction(clusterService, transportService, null, null, threadPool);
|
||||
|
|
Loading…
Reference in New Issue