You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Encoding the baggage items of a span context using DefaultMetadataEncoder.encode() can lead to an error if the baggage items are too huge to fit in the default buffer capacity (which seems to be 256).
The problem is that Tracing.mapToByteBuf uses keyLength instead of valueLength for writing value to byteBuf:
Encoding the baggage items of a span context using
DefaultMetadataEncoder.encode()
can lead to an error if the baggage items are too huge to fit in the default buffer capacity (which seems to be 256).The problem is that
Tracing.mapToByteBuf
useskeyLength
instead ofvalueLength
for writingvalue
tobyteBuf
:rsocket-rpc-java/rsocket-ipc-core/src/main/java/io/rsocket/ipc/tracing/Tracing.java
Line 80 in c3c4772
The text was updated successfully, but these errors were encountered: