From 83ef072e57a1af93fd4d9db6f5a4f6d37ad7f6dc Mon Sep 17 00:00:00 2001 From: Thomas Lamprecht Date: Wed, 15 Jan 2020 14:28:51 +0100 Subject: [PATCH] ACME: comment fixup some POST to GET-as-POST Signed-off-by: Thomas Lamprecht --- src/PVE/ACME.pm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/PVE/ACME.pm b/src/PVE/ACME.pm index 3a3559f..114eb41 100644 --- a/src/PVE/ACME.pm +++ b/src/PVE/ACME.pm @@ -396,7 +396,7 @@ sub finalize_order { } # Get order status -# POST to order URL +# GET-as-POST to order URL # Expects a '200 OK' reply # returns order object sub get_order { @@ -408,7 +408,7 @@ sub get_order { } # Gets authorization object -# Post to authorization URL +# GET-as-POST to authorization URL # Expects a '200 OK' reply # returns authorization object, including challenges array sub get_authorization { @@ -437,7 +437,7 @@ sub deactivate_authorization { } # Get certificate -# POST to order's certificate URL +# GET-as-POST to order's certificate URL # Expects a '200 OK' reply # returns certificate chain in PEM format sub get_certificate { -- 2.39.2