diff options
author | mbligh <mbligh@592f7852-d20e-0410-864c-8624ca9c26a4> | 2009-08-24 22:08:31 +0000 |
---|---|---|
committer | mbligh <mbligh@592f7852-d20e-0410-864c-8624ca9c26a4> | 2009-08-24 22:08:31 +0000 |
commit | f6d1af00097a501c16bb55df5826c8177871ed64 (patch) | |
tree | 4e8d567c7a518c90e46d3582fa2396f0089e3496 /server/profiler.py | |
parent | d2ace1ee8e0d2bb79c01765c02535d518d7d7bd5 (diff) |
Sadly, put back the "disable packaging-only installs" used by the
profiler installs. We can't count on profilers using autoserv-based
packaging because the profiler runs are background jobs, and so
don't actually use autoserv.
I think this code can ultimately but cleaned up but for now it's
better to revert back to the old model of doing "full" installs when
profiling is running on a setup without any http repositories.
Risk: Low
Visibility: Restores server-side profilers in no-repos configs.
Signed-off-by: John Admanski <jadmanski@google.com>
git-svn-id: svn://test.kernel.org/autotest/trunk@3609 592f7852-d20e-0410-864c-8624ca9c26a4
Diffstat (limited to 'server/profiler.py')
-rw-r--r-- | server/profiler.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/server/profiler.py b/server/profiler.py index 0e278feb..998ac264 100644 --- a/server/profiler.py +++ b/server/profiler.py @@ -113,7 +113,7 @@ class profiler_proxy(object): host = hosts.create_host(hostname, auto_monitor=False) tmp_dir = host.get_tmp_dir(parent=PROFILER_TMPDIR) at = autotest.Autotest(host) - at.install(autodir=tmp_dir) + at.install_no_autoserv(autodir=tmp_dir) self.installed_hosts[host] = (at, tmp_dir) # drop any installs from hosts no longer in job.hosts |