Skip to content

Commit 792b012

Browse files
authored
Merge pull request #287 from digma-ai/bug/internal_span_should_be_nullable
updating internal span to nullable
2 parents 348cfce + f37152b commit 792b012

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

model/src/main/kotlin/org/digma/intellij/plugin/model/rest/insights/HighlyOccurringSpanInfo.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ data class HighlyOccurringSpanInfo
1010
@ConstructorProperties("occurrences", "internalSpan", "clientSpan", "traceId", "duration", "fraction")
1111
constructor(
1212
val occurrences: Double,
13-
val internalSpan: SpanInfo,
13+
val internalSpan: SpanInfo?,
1414
val clientSpan: SpanInfo,
1515
val traceId: String,
1616
val duration: Duration,

0 commit comments

Comments
 (0)