node-opcua-pki 6.5.0 → 6.5.1
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/dist/bin/pki.mjs +1 -1
- package/dist/bin/pki.mjs.map +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +4 -3
package/dist/bin/pki.mjs
CHANGED
|
@@ -474,7 +474,7 @@ var init_certificate_manager = __esm({
|
|
|
474
474
|
*/
|
|
475
475
|
static async disposeAll() {
|
|
476
476
|
const instances = [..._CertificateManager.#activeInstances];
|
|
477
|
-
await Promise.all(instances.map((cm) =>
|
|
477
|
+
await Promise.all(instances.map((cm) => _CertificateManager.prototype.dispose.call(cm)));
|
|
478
478
|
}
|
|
479
479
|
/**
|
|
480
480
|
* Assert that all CertificateManager instances have been
|