summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKaloian Manassiev <kaloian.manassiev@mongodb.com>2023-05-03 12:12:07 +0200
committerGitHub <noreply@github.com>2023-05-03 12:12:07 +0200
commit5279a2815c48030f6eb84f379f6678c1e36b2d0c (patch)
treecabcb4c118954fcdc3255514257f5f8bec79d68a
parent59e06a089d93fc240403449089ff8fc710970985 (diff)
downloadmongo-kaloian.manassiev/SERVER-76778-Mongo-Decoration.tar.gz
SERVER-76778 Rename mongo-decoration to mongodb-decorationkaloian.manassiev/SERVER-76778-Mongo-Decoration
-rw-r--r--buildscripts/gdb/mongo.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/buildscripts/gdb/mongo.py b/buildscripts/gdb/mongo.py
index fa9c0b88e08..c7ea555513e 100644
--- a/buildscripts/gdb/mongo.py
+++ b/buildscripts/gdb/mongo.py
@@ -341,14 +341,14 @@ class GetMongoDecoration(gdb.Command):
"""
Search for a decoration on an object by typename and print it e.g.
- (gdb) mongo-decoration opCtx ReadConcernArgs
+ (gdb) mongodb-decoration opCtx ReadConcernArgs
would print out a decoration on opCtx whose type name contains the string "ReadConcernArgs".
"""
def __init__(self):
"""Initialize GetMongoDecoration."""
- RegisterMongoCommand.register(self, "mongo-decoration", gdb.COMMAND_DATA)
+ RegisterMongoCommand.register(self, "mongodb-decoration", gdb.COMMAND_DATA)
def invoke(self, args, _from_tty):
"""Invoke GetMongoDecoration."""