Use reference variable while reading certificates
This commit is contained in:
parent
88ccedda33
commit
782548e4af
@ -116,15 +116,15 @@ func serve() {
|
|||||||
tlsCertFilepath := ""
|
tlsCertFilepath := ""
|
||||||
tlsKeyFilepath := ""
|
tlsKeyFilepath := ""
|
||||||
|
|
||||||
var cert tls.Certificate
|
var cert *tls.Certificate
|
||||||
if tlsCertFilepath != "" && tlsKeyFilepath != "" {
|
if tlsCertFilepath != "" && tlsKeyFilepath != "" {
|
||||||
cert, err = tls.LoadX509KeyPair(tlsCertFilepath, tlsKeyFilepath)
|
*cert, err = tls.LoadX509KeyPair(tlsCertFilepath, tlsKeyFilepath)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
logWithCommand.Fatal(err)
|
logWithCommand.Fatal(err)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
nitroRpcServer, err := initNitroRpcServer(nitroNode, pm, &cert, rpcPort)
|
nitroRpcServer, err := initNitroRpcServer(nitroNode, pm, cert, rpcPort)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
logWithCommand.Fatal(err)
|
logWithCommand.Fatal(err)
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user