From af45284641878da4a407e6f8ee2cdf0acbf5f717 Mon Sep 17 00:00:00 2001 From: Joris Vink Date: Tue, 21 Sep 2021 20:47:23 +0200 Subject: [PATCH] count acme domains when configured with Python --- src/python.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/python.c b/src/python.c index 4006842..f9b1c1a 100644 --- a/src/python.c +++ b/src/python.c @@ -2142,6 +2142,7 @@ python_kore_domain(PyObject *self, PyObject *args, PyObject *kwargs) if (acme) { kore_acme_get_paths(name, &akey, &acert); + acme_domains++; key = akey; cert = acert; }