| Index: server/standalone_profiler.py
|
| diff --git a/server/standalone_profiler.py b/server/standalone_profiler.py
|
| index 63245511e6eabc8d12672c17516a4b60ff059c7f..62a11e13c08c1fb32f4712196b7204fe31d71d43 100644
|
| --- a/server/standalone_profiler.py
|
| +++ b/server/standalone_profiler.py
|
| @@ -9,7 +9,6 @@ running through autotest.
|
|
|
| __author__ = 'cranger@google.com (Colby Ranger)'
|
|
|
| -import platform
|
| import common
|
| from autotest_lib.client.common_lib import barrier
|
|
|
| @@ -17,7 +16,7 @@ from autotest_lib.client.common_lib import barrier
|
| _RUNTEST_PATTERN = ("job.run_test('profiler_sync', timeout_sync=%r,\n"
|
| " timeout_start=%r, timeout_stop=%r,\n"
|
| " hostid='%s', masterid='%s', all_ids=%r)")
|
| -_PROF_MASTER = platform.node()
|
| +_PROF_MASTER = "PROF_MASTER"
|
| _PORT = 11920
|
|
|
|
|
|
|