From 4cd113b09ee3878798b590a43b64e056de17e303 Mon Sep 17 00:00:00 2001 From: Spencer T Brody Date: Tue, 14 Apr 2020 14:51:37 -0700 Subject: [PATCH] SERVER-45133 Fix hang analyzer --- buildscripts/gdb/mongo.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/buildscripts/gdb/mongo.py b/buildscripts/gdb/mongo.py index e5444e3ab4b..e4b90c9375e 100644 --- a/buildscripts/gdb/mongo.py +++ b/buildscripts/gdb/mongo.py @@ -368,7 +368,7 @@ class DumpMongoDBMutexes(gdb.Command): client_set = absl_get_nodes(service_context["_clients"]) # pylint: disable=undefined-variable for client_handle in client_set: client = client_handle.dereference().dereference() - decoration_info = get_decoration(client, "DiagnosticInfoHandle")[1] + decoration_info = get_decoration(client, "DiagnosticInfoHandle") if not decoration_info: continue diagnostic_info_handle = decoration_info[1]