Skip to content

Commit

Permalink
Use explicit int64_t in jaeger-test TagValue (#109)
Browse files Browse the repository at this point in the history
Fixes #108
  • Loading branch information
mhart authored Oct 14, 2022
1 parent 76ebeda commit 571b161
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/workerd/io/jaeger-test.c++
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,7 @@ KJ_TEST("can write span data") {
kj::origin<kj::Date>() + 1 * kj::SECONDS);

spanData.tags.insert("bool_tag"_kj, true);
spanData.tags.insert("int64_tag"_kj, 123l);
spanData.tags.insert("int64_tag"_kj, int64_t(123));
spanData.tags.insert("float64_tag"_kj, 3.14159);
spanData.tags.insert("string_tag"_kj, kj::str("string tag value"));

Expand Down

0 comments on commit 571b161

Please sign in to comment.