lifecycleion 0.0.14 → 0.0.16

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -1,4 +1,4 @@
1
- # Lifecycleion v0.0.14
1
+ # Lifecycleion v0.0.16
2
2
 
3
3
  [![npm version](https://badge.fury.io/js/lifecycleion.svg)](https://badge.fury.io/js/lifecycleion)
4
4
 
@@ -493,6 +493,9 @@ var NodeAdapter = class {
493
493
  }
494
494
  if (isHTTPS) {
495
495
  const httpsOptions = options;
496
+ if (this._config.ca) {
497
+ httpsOptions.ca = this._config.ca;
498
+ }
496
499
  if (this._config.mtls) {
497
500
  httpsOptions.cert = this._config.mtls.cert;
498
501
  httpsOptions.key = this._config.mtls.key;