diff options
author | Ferenc Szabo <frncmx@gmail.com> | 2019-02-05 21:34:34 +0800 |
---|---|---|
committer | Rafael Matias <rafael@skyle.net> | 2019-02-19 20:06:14 +0800 |
commit | 3c62cc6bba7ccc1f6f646cb575c57f7b04da3507 (patch) | |
tree | 4b8927c512553c4ac49317ad22fcbfd54a6c9a49 /swarm/storage | |
parent | 333b1bfb6c95cf5453404f6117252aefff2c190f (diff) | |
download | dexon-3c62cc6bba7ccc1f6f646cb575c57f7b04da3507.tar.gz dexon-3c62cc6bba7ccc1f6f646cb575c57f7b04da3507.tar.zst dexon-3c62cc6bba7ccc1f6f646cb575c57f7b04da3507.zip |
swarm/storage: fix test timeout with -race by increasing mget timeout
(cherry picked from commit 1c3aa8d9b12d6104ccddecc1711bc6be2f5b269d)
Diffstat (limited to 'swarm/storage')
-rw-r--r-- | swarm/storage/common_test.go | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/swarm/storage/common_test.go b/swarm/storage/common_test.go index 8ad95bfbc..23d43becc 100644 --- a/swarm/storage/common_test.go +++ b/swarm/storage/common_test.go @@ -142,10 +142,11 @@ func mget(store ChunkStore, hs []Address, f func(h Address, chunk Chunk) error) close(errc) }() var err error + timeout := 10 * time.Second select { case err = <-errc: - case <-time.NewTimer(5 * time.Second).C: - err = fmt.Errorf("timed out after 5 seconds") + case <-time.NewTimer(timeout).C: + err = fmt.Errorf("timed out after %v", timeout) } return err } |