Commit 19d068d
Fix Netty version conflict by upgrading o11yphant to 1.9.2 (#2511)
This commit resolves a Netty version conflict that was causing the warning:
"NoClassDefFoundError: io/netty/util/internal/ClassInitializerUtil"
The issue was caused by multiple Netty versions in the dependency tree:
- Datastax Cassandra driver (3.11.3) brought in Netty 4.1.77.Final
- grpc-netty (1.35.0) brought in Netty 4.1.52.Final
This conflict prevented Netty from loading its native epoll transport,
causing it to fall back to NIO with a warning message.
Solution:
- Upgraded o11yphant from 1.9.1 to 1.9.2
- Version 1.9.2 removed the grpc-netty dependency from o11yphant-trace-otel
- Removed direct grpc-netty dependency from embedder module
This is a cleaner solution than forcing Netty version alignment via BOM,
as it eliminates the conflicting dependency entirely.
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-authored-by: Claude <[email protected]>1 parent b572c2f commit 19d068d
2 files changed
+1
-5
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
34 | 34 | | |
35 | 35 | | |
36 | 36 | | |
37 | | - | |
38 | | - | |
39 | | - | |
40 | | - | |
41 | 37 | | |
42 | 38 | | |
43 | 39 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
98 | 98 | | |
99 | 99 | | |
100 | 100 | | |
101 | | - | |
| 101 | + | |
102 | 102 | | |
103 | 103 | | |
104 | 104 | | |
| |||
0 commit comments