From 89c2ce1fb90882634815ee6c840bd1804e19e36c Mon Sep 17 00:00:00 2001 From: Daniel Roesler Date: Wed, 10 Jun 2015 18:17:29 -0700 Subject: added error catching for non-issued cert --- sign_csr.py | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) (limited to 'sign_csr.py') diff --git a/sign_csr.py b/sign_csr.py index ccf102e..2e79dea 100644 --- a/sign_csr.py +++ b/sign_csr.py @@ -204,11 +204,15 @@ TODO: apache and nginx configs showing how to do this. #Step 10: Get the certificate signed sys.stderr.write("Requesting signature...") csr_data = "{}.{}.{}".format(header64, csr_b64, csr_sig64) - print "csr_data", csr_data - resp = urllib2.urlopen("{}/new-cert".format(CA), csr_data) - result = json.loads(resp.read()) - - return crt_pem + try: + resp = urllib2.urlopen("{}/new-cert".format(CA), csr_data) + result = json.loads(resp.read()) + print "result", result + except Exception as e: + print "e", e + print "e.read()", e.read() + + return "TODO" if __name__ == "__main__": -- cgit v1.2.3