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
After calling finalize, the order information passed back does not contain a url.
Eg:
let(privateKey, _, finalized)=tryawait acme.orders.finalizeWithRsa(order: order, domains:[domain])letrefreshed=tryawait acme.orders.get(url: finalized.url!)//url is not set
Also, acme.orders.get(url:) and acme.orders.refresh(&order) do not seem to include the url in their response.
That means that one cannot write a loop like this ATM:
let(privateKey, _, finalized)=tryawait acme.orders.finalizeWithRsa(order: order, domains:[domain])varorderForDownload= finalized
while orderForDownload.status ==.processing {tryawaitTask.sleep(for:.seconds(1))tryawait acme.orders.refresh(&orderForDownload)//this will fail// as a work-around the url of the original order data must be used // orderForDownload = try await acme.orders.get(url: order.url!)}
The text was updated successfully, but these errors were encountered:
After calling finalize, the order information passed back does not contain a
url
.Eg:
Also,
acme.orders.get(url:)
andacme.orders.refresh(&order)
do not seem to include theurl
in their response.That means that one cannot write a loop like this ATM:
The text was updated successfully, but these errors were encountered: