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

Side by Side Diff: server/control_segments/cleanup

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, 10 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 def cleanup(machine): 1 def cleanup(machine):
2 hostname, user, passwd, port = parse_machine(machine, ssh_user, 2 host = hosts.create_host(machine, initialize=False, auto_monitor=False)
3 ssh_port, ssh_pass)
4 host = hosts.create_host(hostname, user=user, port=port, initialize=False,
5 password=passwd, auto_monitor=False)
6 host.cleanup() 3 host.cleanup()
7 4
8 5
9 job.parallel_simple(cleanup, machines, log=False) 6 job.parallel_simple(cleanup, machines, log=False)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698