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

Unified Diff: gclient_utils.py

Issue 3357020: Enable parallel checkout by default to --jobs=8 and smoke tests. (Closed)
Patch Set: more fixes Created 10 years, 3 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
« no previous file with comments | « gclient.py ('k') | tests/gclient_smoketest.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: gclient_utils.py
diff --git a/gclient_utils.py b/gclient_utils.py
index d8bbf023ee1a0b6f57bf8d585df07d6545a180da..4c8edb6bfa84f47cd3bd95278461a29fcbcf0023 100644
--- a/gclient_utils.py
+++ b/gclient_utils.py
@@ -595,9 +595,9 @@ class ExecutionQueue(object):
t.kwargs['options'].stdout.full_flush()
if self.progress:
self.progress.update(1)
- assert not t.name in self.ran
- if not t.name in self.ran:
- self.ran.append(t.name)
+ assert not t.item.name in self.ran
+ if not t.item.name in self.ran:
+ self.ran.append(t.item.name)
def _run_one_task(self, task_item, args, kwargs):
if self.jobs > 1:
« no previous file with comments | « gclient.py ('k') | tests/gclient_smoketest.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698