diff --git a/flow/Tracing.actor.cpp b/flow/Tracing.actor.cpp index dc4ea1388c..4bf0b67685 100644 --- a/flow/Tracing.actor.cpp +++ b/flow/Tracing.actor.cpp @@ -220,6 +220,9 @@ private: } else if (size <= 255) { request.write_byte(0xd9); request.write_byte(static_cast(size)); + } else if (size <= 65535) { + request.write_byte(0xda); + request.write_byte(static_cast(size)); } else { // TODO: Add support for longer strings if necessary. ASSERT(false);