diff options
author | Jasur Nurboyev <bluestacks6523@gmail.com> | 2021-11-03 14:19:39 +0000 |
---|---|---|
committer | Evergreen Agent <no-reply@evergreen.mongodb.com> | 2021-11-03 15:51:41 +0000 |
commit | 75242734fdbec90c6a55a57165295b62c173b179 (patch) | |
tree | 243d0e1c543403fdffc16d670d51a9fb889c981b | |
parent | e28293624165173a0886b7713e5b0c39ef662966 (diff) | |
download | mongo-75242734fdbec90c6a55a57165295b62c173b179.tar.gz |
SERVER-61209 Add 'pr' to debug-file-resolver choices list
-rwxr-xr-x | buildscripts/mongosymb.py | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/buildscripts/mongosymb.py b/buildscripts/mongosymb.py index 17b50b6339e..4528253cf0a 100755 --- a/buildscripts/mongosymb.py +++ b/buildscripts/mongosymb.py @@ -411,7 +411,7 @@ def make_argument_parser(parser=None, **kwargs): parser.add_argument('--input-format', choices=['classic', 'thin'], default='classic') parser.add_argument('--output-format', choices=['classic', 'json'], default='classic', help='"json" shows some extra information') - parser.add_argument('--debug-file-resolver', choices=['path', 's3'], default='path') + parser.add_argument('--debug-file-resolver', choices=['path', 's3', 'pr'], default='path') parser.add_argument('--src-dir-to-move', action="store", type=str, default=None, help="Specify a src dir to move to /data/mci/{original_buildid}/src") @@ -421,7 +421,9 @@ def make_argument_parser(parser=None, **kwargs): s3_group.add_argument('--s3-bucket') pr_group = parser.add_argument_group( - 'path resolver options', description='Options used with \'--debug-file-resolver pr\'') + 'Path Resolver options (Path Resolver uses a special web service to retrieve URL of debug symbols file for ' + 'a given BuildID), we use "pr" as a shorter/easier name for this', + description='Options used with \'--debug-file-resolver pr\'') pr_group.add_argument('--pr-host', default='', help='URL of web service running the API to get debug symbol URL') pr_group.add_argument('--pr-cache-dir', default='', |