Skip to content

Commit 24e5f6e

Browse files
bnamasivayamjzhou77
authored andcommitted
Fix ErrorCommitInfo event parser
1 parent e9c25e5 commit 24e5f6e

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

contrib/transaction_profiling_analyzer/transaction_profiling_analyzer.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -277,6 +277,12 @@ def __init__(self, bb, protocol_version, full_output=True):
277277
if protocol_version >= PROTOCOL_VERSION_6_3:
278278
self.report_conflicting_keys = bb.get_bool()
279279

280+
if protocol_version >= PROTOCOL_VERSION_7_1:
281+
lock_aware = bb.get_bool()
282+
if bb.get_bool():
283+
spanId = bb.get_bytes(16)
284+
285+
280286
class UnsupportedProtocolVersionError(Exception):
281287
def __init__(self, protocol_version):
282288
super().__init__("Unsupported protocol version 0x%0.2X" % protocol_version)

0 commit comments

Comments
 (0)