Skip to content

Commit 4350f7c

Browse files
authored
Fix code style
1 parent 4a2ce3b commit 4350f7c

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

pulsar-proxy/src/main/java/org/apache/pulsar/proxy/server/ProxyConnection.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -418,7 +418,8 @@ private synchronized void completeConnect() throws PulsarClientException {
418418
// and we'll take care of just topics and partitions metadata lookups
419419
Supplier<ClientCnx> clientCnxSupplier;
420420
if (service.getConfiguration().isAuthenticationEnabled()) {
421-
clientCnxSupplier = () -> new ProxyClientCnx(clientConf, service.getWorkerGroup(), protocolVersionToAdvertise,
421+
clientCnxSupplier = () -> new ProxyClientCnx(clientConf, service.getWorkerGroup(),
422+
protocolVersionToAdvertise,
422423
service.getConfiguration().isForwardAuthorizationCredentials(), this);
423424
} else {
424425
clientCnxSupplier =

0 commit comments

Comments
 (0)