From e070eb91cb410099abd4bf55913fae8b734df113 Mon Sep 17 00:00:00 2001 From: Alex Li <98560274+lia394126@users.noreply.github.com> Date: Tue, 17 Feb 2026 12:19:11 -0500 Subject: [PATCH] SERVER-98538 Clarify mongodb-decoration comment (#47934) GitOrigin-RevId: 8a2b21aca2d38f35fb17627d6125495de7cd0f4e --- buildscripts/gdb/mongo.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/buildscripts/gdb/mongo.py b/buildscripts/gdb/mongo.py index ba25d531826..7e8e48e8b5a 100644 --- a/buildscripts/gdb/mongo.py +++ b/buildscripts/gdb/mongo.py @@ -398,9 +398,11 @@ DumpGlobalServiceContext() class GetMongoDecoration(gdb.Command): """ - Search for a decoration on an object by typename and print it e.g. + Search for a decoration on an object by typename and print it. - (gdb) mongodb-decoration opCtx ReadConcernArgs + Example: if opCtx is a pointer to mongo::OperationContext, + + (gdb) mongodb-decoration *opCtx ReadConcernArgs would print out a decoration on opCtx whose type name contains the string "ReadConcernArgs". """