From 1d4134a29b93a05c0a31ea15d1feb95a21c63258 Mon Sep 17 00:00:00 2001 From: Sean Date: Wed, 5 Nov 2025 09:51:19 -0500 Subject: [PATCH] Changes for MarketBeat --- MarketData/MarketData/Services/MainService.cs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/MarketData/MarketData/Services/MainService.cs b/MarketData/MarketData/Services/MainService.cs index fea3dfc..33a3520 100755 --- a/MarketData/MarketData/Services/MainService.cs +++ b/MarketData/MarketData/Services/MainService.cs @@ -863,6 +863,9 @@ namespace MarketData.Services } } + /// + /// We need to implement this with a batch queue so that we are doing some of these concurrentlyday + /// public static void UpdateMissingAnalystRatings() { Profiler profiler = new Profiler(); @@ -904,7 +907,7 @@ namespace MarketData.Services } finally { - MDTrace.WriteLine(LogLevel.DEBUG,$"Done, total took {profiler.End()}(ms)"); + MDTrace.WriteLine(LogLevel.DEBUG,$"{nameof(UpdateMissingAnalystRatings)} Done, total took {profiler.End()}(ms)"); } }