Skip to content

Commit

Permalink
Merge pull request #6 from win-acme/newOrderStatus
Browse files Browse the repository at this point in the history
New order status
  • Loading branch information
WouterTinus authored Jun 8, 2020
2 parents 1458cbe + 113c137 commit 1307001
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ACMESharp/Protocol/AcmeProtocolClient.cs
Original file line number Diff line number Diff line change
Expand Up @@ -383,7 +383,7 @@ public async Task<OrderDetails> CreateOrderAsync(IEnumerable<string> dnsIdentifi
new Uri(_http.BaseAddress, Directory.NewOrder),
method: HttpMethod.Post,
message: message,
expectedStatuses: new[] { HttpStatusCode.Created },
expectedStatuses: new[] { HttpStatusCode.Created, HttpStatusCode.OK },
cancel: cancel);

var order = await DecodeOrderResponseAsync(resp);
Expand Down

0 comments on commit 1307001

Please sign in to comment.