mirror of
https://github.com/certbot/certbot.git
synced 2026-06-06 07:12:54 -04:00
show what names the cert was issued for
This commit is contained in:
parent
4847670654
commit
2d1ca6bf6f
1 changed files with 2 additions and 2 deletions
|
|
@ -268,7 +268,7 @@ def issue(session):
|
|||
cert = CSR.issue(csr, names)
|
||||
r.hset(session, "cert", cert)
|
||||
if cert: # once issuing cert succeeded
|
||||
if debug: print "issued for", short(session)
|
||||
if debug: print "%s: issued certificate for names: %s" % (short(session), ", ".join(names))
|
||||
r.hset(session, "state", "done")
|
||||
r.lpush("pending-done", session)
|
||||
# TODO: Note that we do not publish a pubsub message when
|
||||
|
|
@ -322,7 +322,7 @@ for message in ps.listen():
|
|||
if debug: print "expiring ancient session", short(session)
|
||||
r.hset(session, "live", False)
|
||||
else:
|
||||
if debug: print "going to %s for %s" % (queue, short(session))
|
||||
# if debug: print "going to %s for %s" % (queue, short(session))
|
||||
if queue == "makechallenge": makechallenge(session)
|
||||
elif queue == "testchallenge": testchallenge(session)
|
||||
elif queue == "issue": issue(session)
|
||||
|
|
|
|||
Loading…
Reference in a new issue