Add 2-ph note to process info
authorJeremy Harris <jgh146exb@wizmail.org>
Tue, 1 Oct 2024 09:21:18 +0000 (10:21 +0100)
committerJeremy Harris <jgh146exb@wizmail.org>
Tue, 1 Oct 2024 09:22:59 +0000 (10:22 +0100)
src/src/queue.c

index 57e5eb7692be9a25209b34c4259bee929ca9c206..8568de78627c4adcafdec7748966b9dfa5f81658 100644 (file)
@@ -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"");
 
   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);
 }
 
 queue_run(q, start_id, stop_id, FALSE);
 }