Skip to content

Commit ea530fb

Browse files
committed
Fix red build
1 parent 3a432ca commit ea530fb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/v1/internal/ch-node.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ const TrustStrategy = {
100100
};
101101

102102
let socket = tls.connect(opts.port, opts.host, tlsOpts, function () {
103-
var serverCert = socket.getPeerCertificate(raw=true);
103+
var serverCert = socket.getPeerCertificate(/*raw=*/true);
104104

105105
if( !serverCert.raw ) {
106106
// If `raw` is not available, we're on an old version of NodeJS, and

0 commit comments

Comments
 (0)