Skip to content

Commit

Permalink
🐛 修复 PolarisGrpcServerBuilder.useTransportSecurity 方法未正确调用实现方法 (#51)
Browse files Browse the repository at this point in the history
  • Loading branch information
lingting committed Mar 19, 2024
1 parent f867859 commit 84637ca
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -271,7 +271,7 @@ public PolarisGrpcServerBuilder addStreamTracerFactory(ServerStreamTracer.Factor

@Override
public PolarisGrpcServerBuilder useTransportSecurity(InputStream certChain, InputStream privateKey) {
super.useTransportSecurity(certChain, privateKey);
builder.useTransportSecurity(certChain, privateKey);
return this;
}

Expand Down

0 comments on commit 84637ca

Please # to comment.