Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,10 @@ muzzle {
group = 'io.opentelemetry'
versions = "[$otelVersion,0.8.0)"
assertInverse = true
skipVersions = ['0.2.2', '0.2.3']
// I have no idea why gradle doesn't respect the version range above
// but I also have no time to figure it out for an instrumentation
// that is experimental
Comment on lines +10 to +12
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The reason for this is we have assertInverse=true, so it still tries to check against versions outside that range.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why do we have assertInverse=true?

skipVersions = ['0.2.2', '0.2.3', '0.9.0']
}
}

Expand Down