We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 57f7123 commit b5bffc0Copy full SHA for b5bffc0
src/Aspire.Dashboard/Otlp/Storage/TelemetryRepository.cs
@@ -771,14 +771,14 @@ public bool HasUpdatedTrace(OtlpTrace trace)
771
772
try
773
{
774
- var lastestTrace = GetTraceUnsynchronized(trace.TraceId);
775
- if (lastestTrace == null)
+ var latestTrace = GetTraceUnsynchronized(trace.TraceId);
+ if (latestTrace == null)
776
777
// Trace must have been removed. Technically there is an update (nothing).
778
return true;
779
}
780
781
- return lastestTrace.LastUpdatedDate > trace.LastUpdatedDate;
+ return latestTrace.LastUpdatedDate > trace.LastUpdatedDate;
782
783
finally
784
0 commit comments