aboutsummaryrefslogtreecommitdiffstats
path: root/src/worker.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/worker.c')
-rw-r--r--src/worker.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/worker.c b/src/worker.c
index 4bca03f2d..aff9c1b00 100644
--- a/src/worker.c
+++ b/src/worker.c
@@ -109,6 +109,11 @@ rspamd_worker_body_handler (struct rspamd_http_connection *conn,
ctx = task->worker->ctx;
+ if (!rspamd_protocol_handle_request (task, msg)) {
+ task->state = WRITE_REPLY;
+ return 0;
+ }
+
if (task->cmd == CMD_PING) {
task->state = WRITE_REPLY;
return 0;
@@ -122,11 +127,6 @@ rspamd_worker_body_handler (struct rspamd_http_connection *conn,
return 0;
}
- if (!rspamd_protocol_handle_request (task, msg)) {
- task->state = WRITE_REPLY;
- return 0;
- }
-
if (!rspamd_task_process (task, msg, ctx->classify_pool, TRUE)) {
task->state = WRITE_REPLY;
}