Skip to content

Commit

Permalink
fix: issue with node > 14. See: nodejs/node#36292
Browse files Browse the repository at this point in the history
  • Loading branch information
owangedj committed Nov 9, 2021
1 parent 365acba commit bc79c77
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lib/request-options.js
Expand Up @@ -34,7 +34,8 @@ function RequestOptions(options, defaults) {

// https, http2
this.ca = null;
this.pfx = null;
// Fix issue with node > 14. See: https://github.com/nodejs/node/issues/36292
// this.pfx = null;
this.key = null;
this.cert = null;
this.ciphers = null;
Expand Down

0 comments on commit bc79c77

Please sign in to comment.