Skip to content

Commit

Permalink
[processor/logstransform] Skip flaky test (open-telemetry#13219)
Browse files Browse the repository at this point in the history
  • Loading branch information
djaglowski committed Aug 11, 2022
1 parent a0c0361 commit 397b033
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions processor/logstransformprocessor/processor_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,13 @@ type testLogMessage struct {
attributes *map[string]pcommon.Value
}

// Temporary abstraction to avoid "unused" linter
var skip = func(t *testing.T, why string) {
t.Skip(why)
}

func TestLogsTransformProcessor(t *testing.T) {
skip(t, "Flaky Test - See https://github.com/open-telemetry/opentelemetry-collector-contrib/issues/9761")
baseMessage := pcommon.NewValueString("2022-01-01 01:02:03 INFO this is a test message")
spanID := pcommon.NewSpanID([8]byte{0x32, 0xf0, 0xa2, 0x2b, 0x6a, 0x81, 0x2c, 0xff})
traceID := pcommon.NewTraceID([16]byte{0x48, 0x01, 0x40, 0xf3, 0xd7, 0x70, 0xa5, 0xae, 0x32, 0xf0, 0xa2, 0x2b, 0x6a, 0x81, 0x2c, 0xff})
Expand Down

0 comments on commit 397b033

Please sign in to comment.