From fc4fadaa07f2b19b7bde9b350b68af93fb00a161 Mon Sep 17 00:00:00 2001 From: Rick Ross Date: Fri, 16 Aug 2024 17:35:00 -0400 Subject: [PATCH] Changed output from worker to unique workflows --- src/CounterInterceptor/Program.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/CounterInterceptor/Program.cs b/src/CounterInterceptor/Program.cs index 114c155..a4d500d 100644 --- a/src/CounterInterceptor/Program.cs +++ b/src/CounterInterceptor/Program.cs @@ -62,7 +62,7 @@ await worker.ExecuteAsync(async () => // Print worker counter info Console.WriteLine("\nCollected Worker Counter Info:\n"); Console.WriteLine(counterInterceptor.WorkerInfo()); - Console.WriteLine($"Number of workers: {counterInterceptor.Counts.Count}"); + Console.WriteLine($"Number of unique workflows: {counterInterceptor.Counts.Count}"); // Print client counter info Console.WriteLine();