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 0e11edefb59437fd78480af37dc338c72c5ac9d4
parent 73055662de46c1ce3a803cbe5987ee9fc29a2a0e
Author: Joris Vink <joris@coders.se>
Date:   Fri, 19 Sep 2014 11:16:56 +0200

s/HTTP_STATUS_RETRY/HTTP_STATE_RETRY

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

diff --git a/examples/pgsql/src/pgsql.c b/examples/pgsql/src/pgsql.c @@ -132,7 +132,7 @@ request_db_wait(struct http_request *req) */ switch (state->sql.state) { case KORE_PGSQL_STATE_WAIT: - return (HTTP_STATUS_RETRY); + return (HTTP_STATE_RETRY); case KORE_PGSQL_STATE_COMPLETE: req->fsm_state = REQ_STATE_DONE; break;