Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(99)

Unified Diff: server/server_job.py

Issue 6246035: Merge remote branch 'cros/upstream' into master (Closed) Base URL: ssh://git@gitrw.chromium.org:9222/autotest.git@master
Patch Set: patch Created 9 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: server/server_job.py
diff --git a/server/server_job.py b/server/server_job.py
index efc88d619816cb2f8e62ab0c4def92842e682771..8a16c6a4fdb06ba250149d459d29cfd9c34ccd30 100644
--- a/server/server_job.py
+++ b/server/server_job.py
@@ -6,7 +6,7 @@ This is the core infrastructure. Derived from the client side job.py
Copyright Martin J. Bligh, Andy Whitcroft 2007
"""
-import getpass, os, sys, re, stat, tempfile, time, select, subprocess
+import getpass, os, sys, re, stat, tempfile, time, select, subprocess, platform
import traceback, shutil, warnings, fcntl, pickle, logging, itertools, errno
from autotest_lib.client.bin import sysinfo
from autotest_lib.client.common_lib import base_job
@@ -204,6 +204,7 @@ class base_server_job(base_job.base_job):
job_data = {'label' : label, 'user' : user,
'hostname' : ','.join(machines),
+ 'drone' : platform.node(),
'status_version' : str(self._STATUS_VERSION),
'job_started' : str(int(time.time()))}
if group_name:
« cli/job.py ('K') | « server/prebuild.py ('k') | server/standalone_profiler.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698