kore

Kore is a web application platform for writing scalable, concurrent web based processes in C or Python.
Commits | Files | Refs | README | LICENSE | git clone https://git.kore.io/kore.git

commit af45284641878da4a407e6f8ee2cdf0acbf5f717
parent 01370c262d0902374f690578bb62bb7e6ea64a49
Author: Joris Vink <joris@coders.se>
Date:   Tue, 21 Sep 2021 20:47:23 +0200

count acme domains when configured with Python

Diffstat:
src/python.c | 1+
1 file changed, 1 insertion(+), 0 deletions(-)

diff --git 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; }