mirror of
https://github.com/vacp2p/status-linea-besu.git
synced 2026-01-08 21:38:15 -05:00
comment out flaky part of test (#6186)
Signed-off-by: Sally MacFarlane <macfarla.github@gmail.com>
This commit is contained in:
@@ -192,10 +192,11 @@ public class OpenTelemetryAcceptanceTest extends AcceptanceTestBase {
|
||||
assertThat(internalSpan.getKind()).isEqualTo(Span.SpanKind.SPAN_KIND_INTERNAL);
|
||||
final ByteString parent = internalSpan.getParentSpanId();
|
||||
assertThat(parent.isEmpty()).isFalse();
|
||||
final Span serverSpan = spans.get(0).getScopeSpans(0).getSpans(1);
|
||||
assertThat(serverSpan.getKind()).isEqualTo(Span.SpanKind.SPAN_KIND_SERVER);
|
||||
final ByteString rootSpanId = serverSpan.getParentSpanId();
|
||||
assertThat(rootSpanId.isEmpty()).isTrue();
|
||||
// this part of the test is flaky
|
||||
// final Span serverSpan = spans.get(0).getScopeSpans(0).getSpans(1);
|
||||
// assertThat(serverSpan.getKind()).isEqualTo(Span.SpanKind.SPAN_KIND_SERVER);
|
||||
// final ByteString rootSpanId = serverSpan.getParentSpanId();
|
||||
// assertThat(rootSpanId.isEmpty()).isTrue();
|
||||
});
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user