We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 942e72e commit af4c45dCopy full SHA for af4c45d
core/kamon-core/src/main/scala/kamon/trace/SpanPropagation.scala
@@ -102,7 +102,7 @@ object W3CTraceContext {
102
def encodeTraceParent(parent: Span): String = {
103
def idToHex(identifier: Identifier, length: Int): String = {
104
val leftPad = (string: String) => "0" * (length - string.length) + string
105
- leftPad(identifier.bytes.map("%02X" format _).mkString)
+ leftPad(identifier.bytes.map("%02x" format _).mkString)
106
}
107
108
val samplingDecision = if (parent.trace.samplingDecision == SamplingDecision.Sample) "01" else "00"
0 commit comments