From 29af20be745bbbe364b8d4cae1d858aa2cf5b1a7 Mon Sep 17 00:00:00 2001 From: katezdb Date: Mon, 18 Nov 2024 15:17:33 -0800 Subject: [PATCH] SERVER-96966 Remove buildloggerUrl parameter as unused (#29314) GitOrigin-RevId: 4f37236a428a912c35333f96b703d7098adffc05 --- buildscripts/resmokelib/run/__init__.py | 8 -------- buildscripts/tests/resmokelib/test_parser.py | 1 - 2 files changed, 9 deletions(-) diff --git a/buildscripts/resmokelib/run/__init__.py b/buildscripts/resmokelib/run/__init__.py index bc08a199e12..d141c25e32d 100644 --- a/buildscripts/resmokelib/run/__init__.py +++ b/buildscripts/resmokelib/run/__init__.py @@ -1983,14 +1983,6 @@ class RunPlugin(PluginInterface): "--buildId", dest="build_id", metavar="BUILD_ID", help="Sets the build ID of the task." ) - evergreen_options.add_argument( - "--buildloggerUrl", - action="store", - dest="buildlogger_url", - metavar="URL", - help="The root url of the buildlogger server.", - ) - evergreen_options.add_argument( "--distroId", dest="distro_id", diff --git a/buildscripts/tests/resmokelib/test_parser.py b/buildscripts/tests/resmokelib/test_parser.py index a7caa3c7f8a..fb3a7ef5209 100644 --- a/buildscripts/tests/resmokelib/test_parser.py +++ b/buildscripts/tests/resmokelib/test_parser.py @@ -279,7 +279,6 @@ class TestLocalCommandLine(unittest.TestCase): "run", "--suites=my_suite", "--log=buildlogger", - "--buildloggerUrl=some_url", "--storageEngine=my_storage_engine", ] )