summaryrefslogtreecommitdiff
path: root/buildscripts/resmokelib/logging/buildlogger.py
diff options
context:
space:
mode:
Diffstat (limited to 'buildscripts/resmokelib/logging/buildlogger.py')
-rw-r--r--buildscripts/resmokelib/logging/buildlogger.py8
1 files changed, 0 insertions, 8 deletions
diff --git a/buildscripts/resmokelib/logging/buildlogger.py b/buildscripts/resmokelib/logging/buildlogger.py
index 8aa6b6bd983..6325ecabb89 100644
--- a/buildscripts/resmokelib/logging/buildlogger.py
+++ b/buildscripts/resmokelib/logging/buildlogger.py
@@ -14,7 +14,6 @@ CREATE_BUILD_ENDPOINT = "/build"
APPEND_GLOBAL_LOGS_ENDPOINT = "/build/%(build_id)s"
CREATE_TEST_ENDPOINT = "/build/%(build_id)s/test"
APPEND_TEST_LOGS_ENDPOINT = "/build/%(build_id)s/test/%(test_id)s"
-PARSLEY_LOGS_URL = "https://parsley.mongodb.com/resmoke/%(build_id)s/test/%(test_id)s"
_BUILDLOGGER_CONFIG = os.getenv("BUILDLOGGER_CREDENTIALS", "mci.buildlogger")
@@ -299,7 +298,6 @@ class BuildloggerServer(object):
"builder": builder,
"buildnum": build_num,
"task_id": _config.EVERGREEN_TASK_ID,
- "execution": _config.EVERGREEN_EXECUTION,
})
return response["id"]
@@ -318,7 +316,6 @@ class BuildloggerServer(object):
"command": test_command,
"phase": self.config.get("build_phase", "unknown"),
"task_id": _config.EVERGREEN_TASK_ID,
- "execution": _config.EVERGREEN_EXECUTION,
})
return response["id"]
@@ -344,8 +341,3 @@ class BuildloggerServer(object):
base_url = _config.BUILDLOGGER_URL.rstrip("/")
endpoint = APPEND_TEST_LOGS_ENDPOINT % {"build_id": build_id, "test_id": test_id}
return "%s/%s" % (base_url, endpoint.strip("/"))
-
- @staticmethod
- def get_parsley_log_url(build_id, test_id):
- """Return the parsley log URL."""
- return PARSLEY_LOGS_URL % {"build_id": build_id, "test_id": test_id}