@@ -212,7 +212,10 @@ public Map<String, Supplier<AuxTransport>> getAuxTransports(
212212 boolean detailedErrorsEnabled = SETTING_GRPC_DETAILED_ERRORS_ENABLED .get (settings );
213213 return Collections .singletonMap (GRPC_TRANSPORT_SETTING_KEY , () -> {
214214 List <BindableService > grpcServices = new ArrayList <>(
215- List .of (new DocumentServiceImpl (client , detailedErrorsEnabled ), new SearchServiceImpl (client , queryUtils , detailedErrorsEnabled ))
215+ List .of (
216+ new DocumentServiceImpl (client , detailedErrorsEnabled ),
217+ new SearchServiceImpl (client , queryUtils , detailedErrorsEnabled )
218+ )
216219 );
217220 for (GrpcServiceFactory serviceFac : servicesFactory ) {
218221 List <BindableService > pluginServices = serviceFac .initClient (client )
@@ -264,8 +267,11 @@ public Map<String, Supplier<AuxTransport>> getSecureAuxTransports(
264267
265268 return Collections .singletonMap (GRPC_SECURE_TRANSPORT_SETTING_KEY , () -> {
266269 boolean detailedErrorsEnabled = SETTING_GRPC_DETAILED_ERRORS_ENABLED .get (settings );
267- List <BindableService > grpcServices = new ArrayList <>(
268- List .of (new DocumentServiceImpl (client , detailedErrorsEnabled ), new SearchServiceImpl (client , queryUtils , detailedErrorsEnabled ))
270+ List <BindableService > grpcServices = new ArrayList <>(
271+ List .of (
272+ new DocumentServiceImpl (client , detailedErrorsEnabled ),
273+ new SearchServiceImpl (client , queryUtils , detailedErrorsEnabled )
274+ )
269275 );
270276 for (GrpcServiceFactory serviceFac : servicesFactory ) {
271277 List <BindableService > pluginServices = serviceFac .initClient (client )
0 commit comments