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 56c33f85d45791f48347566b4e7865cafadb65d5
parent 31c0caf901573211786d02c397fd52cf39fbd9f2
Author: Joris Vink <joris@coders.se>
Date:   Mon, 18 Nov 2019 20:30:52 +0100

change client_authority to client_verify.

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

diff --git a/src/python.c b/src/python.c @@ -1940,7 +1940,7 @@ python_kore_domain(PyObject *self, PyObject *args, PyObject *kwargs) return (NULL); } - ca = python_string_from_dict(kwargs, "client_authority"); + ca = python_string_from_dict(kwargs, "client_verify"); if (ca != NULL) { python_long_from_dict(kwargs, "verify_depth", &depth); if (depth < 0) {