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

Unified Diff: common/parallel/parallel.go

Issue 1610993002: LogDog: Add collector service implementation. (Closed) Base URL: https://github.com/luci/luci-go@master
Patch Set: Created 4 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: common/parallel/parallel.go
diff --git a/common/parallel/parallel.go b/common/parallel/parallel.go
index fa6af21652dd4bd49dac70e8b8fe90b4d269380d..fd56a41a6dd39eda6f525f40b4a28080d249e32c 100644
--- a/common/parallel/parallel.go
+++ b/common/parallel/parallel.go
@@ -16,5 +16,5 @@ package parallel
//
// This function is equivalent to WorkPool(0, gen).
func FanOutIn(gen func(chan<- func() error)) error {
- return WorkPool(0, gen)
+ return Run(nil, gen)
dnj (Google) 2016/01/21 04:36:24 Run is one WorkPool, but more baremetal.
}

Powered by Google App Engine
This is Rietveld 408576698