From 34ad4b617bd20c5097c357b456a895788b6bdc24 Mon Sep 17 00:00:00 2001 From: Lukas Joswiak Date: Wed, 13 Jan 2021 16:42:36 -0800 Subject: [PATCH] Add support for longer strings --- flow/Tracing.actor.cpp | 3 +++ 1 file changed, 3 insertions(+) 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);