From: Jeremy Harris Date: Tue, 1 Oct 2024 09:21:18 +0000 (+0100) Subject: Add 2-ph note to process info X-Git-Url: https://git.exim.org/exim.git/commitdiff_plain/5026ae4627f3ea72c1ae5fea1f5486cd74b4d734 Add 2-ph note to process info --- diff --git a/src/src/queue.c b/src/src/queue.c index 57e5eb769..8568de786 100644 --- a/src/src/queue.c +++ b/src/src/queue.c @@ -834,10 +834,10 @@ DEBUG(D_queue_run) debug_printf("Single queue run%s%s%s%s\n", stop_id ? US" stopping at " : US"", stop_id ? stop_id : US""); -if (*queue_name) - set_process_info("running the '%s' queue (single queue run)", queue_name); -else - set_process_info("running the queue (single queue run)"); +set_process_info("running the %s%s%squeue (single queue run%s)", + *queue_name ? "'" : "", queue_name, *queue_name ? "' " : "", + q->queue_2stage ? ", 2-phase" : "" + ); queue_run(q, start_id, stop_id, FALSE); }