summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--buildscripts/resmokelib/logging/buildlogger.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/buildscripts/resmokelib/logging/buildlogger.py b/buildscripts/resmokelib/logging/buildlogger.py
index e8e37d2c004..d9792a4e09e 100644
--- a/buildscripts/resmokelib/logging/buildlogger.py
+++ b/buildscripts/resmokelib/logging/buildlogger.py
@@ -104,6 +104,7 @@ def new_build_id(config):
response = handler.post(CREATE_BUILD_ENDPOINT, data={
"builder": builder,
"buildnum": build_num,
+ "task_id": _config.EVERGREEN_TASK_ID,
})
return response["id"]
@@ -128,6 +129,7 @@ def new_test_id(build_id, build_config, test_filename, test_command):
"test_filename": test_filename,
"command": test_command,
"phase": build_config.get("build_phase", "unknown"),
+ "task_id": _config.EVERGREEN_TASK_ID,
})
return response["id"]