Remove storage timeouts (#928)

* remove storage timeouts

* fix tests
This commit is contained in:
marpio
2018-11-16 22:00:08 +01:00
committed by Manu Gupta
parent 3061da5ee2
commit 4785e9c2b3
20 changed files with 32 additions and 103 deletions
+1 -1
View File
@@ -31,7 +31,7 @@ func getStorage(tb testing.TB) *ModuleStore {
tb.SkipNow()
}
backend, err := NewStorage(&config.MongoConfig{URL: url})
backend, err := NewStorage(&config.MongoConfig{URL: url}, config.GetTimeoutDuration(300))
require.NoError(tb, err)
return backend