node-acme-client icon indicating copy to clipboard operation
node-acme-client copied to clipboard

I want one call to finish before I call the other.

Open huabanlu opened this issue 1 year ago • 2 comments

const [certificateKey, certificateCsr] = await acme.crypto.createCsr({ commonName: '*.test.com', altNames: ['test.com'] });

If I do this, I call the challengeCreateFn method at the same time. I want one call to finish before I call the other.

This is the log: 2022-11-11 01:25:03 Triggered challengeCreateFn() dns-01 2022-11-11 01:25:03 Triggered challengeCreateFn() dns-01 2022-11-11 01:25:03 Triggered challengeRemoveFn() dns-01

and the version: "acme-client": "^5.0.0"

huabanlu avatar Nov 12 '22 05:11 huabanlu