git://git.exim.org
/
exim.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(from parent 1:
662006a
)
Add 2-ph note to process info
author
Jeremy Harris
<jgh146exb@wizmail.org>
Tue, 1 Oct 2024 09:21:18 +0000
(10:21 +0100)
committer
Jeremy Harris
<jgh146exb@wizmail.org>
Tue, 1 Oct 2024 09:22:59 +0000
(10:22 +0100)
src/src/queue.c
patch
|
blob
|
history
diff --git
a/src/src/queue.c
b/src/src/queue.c
index 57e5eb7692be9a25209b34c4259bee929ca9c206..8568de78627c4adcafdec7748966b9dfa5f81658 100644
(file)
--- 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);
}