summaryrefslogtreecommitdiff
path: root/buildscripts/hang_analyzer.py
diff options
context:
space:
mode:
authorWilliam Schultz <william.schultz@mongodb.com>2018-12-21 14:36:28 -0500
committerWilliam Schultz <william.schultz@mongodb.com>2018-12-21 14:36:28 -0500
commit23128892c8d73cb159b881cb00f2404d6ad67b2b (patch)
tree7aeb76b03db6fa4f566ebc3d9b40dccfad4a7940 /buildscripts/hang_analyzer.py
parentd0912b94ee141d46c14c00ba30d28037d5464af0 (diff)
downloadmongo-23128892c8d73cb159b881cb00f2404d6ad67b2b.tar.gz
SERVER-38045 Disable dumping of the SessionCatalog in the hang analyzer
The recent change to utilize the abseil hash map for stdx::unordered_map breaks the logic used to unpack a LogicalSessionIdMap inside the mongod-dump-sessions GDB command. This commit disabled the command until a suitable workaround is found.
Diffstat (limited to 'buildscripts/hang_analyzer.py')
-rwxr-xr-xbuildscripts/hang_analyzer.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/buildscripts/hang_analyzer.py b/buildscripts/hang_analyzer.py
index e96dbc2f841..d49add61010 100755
--- a/buildscripts/hang_analyzer.py
+++ b/buildscripts/hang_analyzer.py
@@ -380,7 +380,8 @@ class GDBDumper(object):
mongodb_show_locks,
mongodb_waitsfor_graph,
mongodb_javascript_stack,
- mongod_dump_sessions,
+ # Disable for now until we can inspect new abseil hash map implementation in GDB.
+ # mongod_dump_sessions,
"set confirm off",
"quit",
]