Skip to content

Commit b5bffc0

Browse files
committed
Update
1 parent 57f7123 commit b5bffc0

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/Aspire.Dashboard/Otlp/Storage/TelemetryRepository.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -771,14 +771,14 @@ public bool HasUpdatedTrace(OtlpTrace trace)
771771

772772
try
773773
{
774-
var lastestTrace = GetTraceUnsynchronized(trace.TraceId);
775-
if (lastestTrace == null)
774+
var latestTrace = GetTraceUnsynchronized(trace.TraceId);
775+
if (latestTrace == null)
776776
{
777777
// Trace must have been removed. Technically there is an update (nothing).
778778
return true;
779779
}
780780

781-
return lastestTrace.LastUpdatedDate > trace.LastUpdatedDate;
781+
return latestTrace.LastUpdatedDate > trace.LastUpdatedDate;
782782
}
783783
finally
784784
{

0 commit comments

Comments
 (0)