From 2ecdcb25c8d57291710f626117f1a8d4f234d2a0 Mon Sep 17 00:00:00 2001 From: David Humphrey Date: Thu, 27 Jan 2022 19:57:44 -0500 Subject: [PATCH] Always send a build's code as part of /status info (#2762) --- tools/autodeployment/builds.js | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/tools/autodeployment/builds.js b/tools/autodeployment/builds.js index 51b728d39c..70ab8f0e5b 100644 --- a/tools/autodeployment/builds.js +++ b/tools/autodeployment/builds.js @@ -34,16 +34,13 @@ class Build { type: this.type, githubData: this.githubData, startedDate: this.startedDate, + code: this.code, }; if (this.stoppedDate) { build.stoppedDate = this.stoppedDate; } - if (this.code) { - build.code = this.code; - } - return build; } }