You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The HTTP option Reject Unauthorized is always set to true regardless of values set for options strictSSL and rejectUnauthorized due to following code snippet: this.rejectUnauthorized = options.strictSSL || options.rejectUnauthorized || true;
This turns out to be a problem for npm Enterprise (npm/policy-follower) that depends on changes-stream package when using an SSL interceptor even Reject Unauthorized option for npm Enterprise is set to false: changes-stream error: self signed certificate in certificate chain
The text was updated successfully, but these errors were encountered:
The HTTP option Reject Unauthorized is always set to
true
regardless of values set for optionsstrictSSL
andrejectUnauthorized
due to following code snippet:this.rejectUnauthorized = options.strictSSL || options.rejectUnauthorized || true;
This turns out to be a problem for npm Enterprise (npm/policy-follower) that depends on changes-stream package when using an SSL interceptor even Reject Unauthorized option for npm Enterprise is set to
false
:changes-stream error: self signed certificate in certificate chain
The text was updated successfully, but these errors were encountered: