]> git.ipfire.org Git - thirdparty/dovecot/core.git/commitdiff
auth: "Auth request was queued .. secs" log message should be warning, not error
authorTimo Sirainen <timo.sirainen@open-xchange.com>
Fri, 24 May 2024 12:03:26 +0000 (15:03 +0300)
committeraki.tuomi <aki.tuomi@open-xchange.com>
Mon, 27 May 2024 17:43:46 +0000 (17:43 +0000)
src/auth/auth-worker-connection.c

index aed4f6f252ba55ffa805bd1a216aac9fd12d9936..0f1b3a9c44d58efa2ce94a6bc3f8d6cd847a24ee 100644 (file)
@@ -108,10 +108,10 @@ static bool auth_worker_request_send(struct auth_worker_connection *worker,
            ioloop_time - auth_worker_last_warn >
            AUTH_WORKER_DELAY_WARN_MIN_INTERVAL_SECS) {
                auth_worker_last_warn = ioloop_time;
-               e_error(worker->conn.event, "Auth request was queued for %d "
-                       "seconds, %d left in queue "
-                       "(see service auth-worker { process_limit })",
-                       age_secs, aqueue_count(worker_request_queue));
+               e_warning(worker->conn.event, "Auth request was queued for %d "
+                         "seconds, %d left in queue "
+                         "(see service auth-worker { process_limit })",
+                         age_secs, aqueue_count(worker_request_queue));
        }
 
        request->id = ++worker->id_counter;