commit | 4e5e3feffa866dd3b55d6031d93372ad0bbc012d | [log] [tgz] |
---|---|---|
author | Shyam Jayaraman <bjornick@google.com> | Tue Sep 23 15:28:14 2014 -0700 |
committer | Shyam Jayaraman <bjornick@google.com> | Tue Sep 23 15:28:14 2014 -0700 |
tree | 6c2fba83c6cfd9e66a9f7a8cccca3b03f16f9d88 | |
parent | a05a58d332be54689608dbe2ce9fa099eb87865d [diff] |
veyron/services/wsprd: Added a longer time out, while waiting for message since it looks like jenkins is really slow. Change-Id: Ieb5801eec20c077786d4aa08e6bce6caa68670d6
diff --git a/services/wsprd/lib/testwriter/writer.go b/services/wsprd/lib/testwriter/writer.go index 79b7c76..5814d3f 100644 --- a/services/wsprd/lib/testwriter/writer.go +++ b/services/wsprd/lib/testwriter/writer.go
@@ -80,7 +80,7 @@ case <-w.notifier: fmt.Println("got notification") continue - case <-time.After(time.Second): + case <-time.After(10 * time.Second): fmt.Println("Timed out") return fmt.Errorf("timed out") }