Skip to content

Commit

Permalink
fix type comversion (#2921)
Browse files Browse the repository at this point in the history
  • Loading branch information
jinglina committed Apr 5, 2021
1 parent 56af6b4 commit 33e8e96
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion model/converter/thrift/jaeger/from_domain.go
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ type domainToJaegerTransformer struct{}

func (d domainToJaegerTransformer) keyValueToTag(kv *model.KeyValue) *jaeger.Tag {
if kv.VType == model.StringType {
stringValue := string(kv.VStr)
stringValue := kv.VStr
return &jaeger.Tag{
Key: kv.Key,
VType: jaeger.TagType_STRING,
Expand Down

0 comments on commit 33e8e96

Please sign in to comment.