Reduce test timeout for graphite and openTSDB

pull/2333/head
Philip O'Toole 2015-04-17 20:14:13 -07:00
parent e68807d173
commit 4a1df4c45a
1 changed files with 2 additions and 2 deletions

View File

@ -26,8 +26,8 @@ const (
// uses nice round batches, has to deal with leftover.
batchSize = 4217
openTSDBTestTimeout = 10 * time.Second
graphiteTestTimeout = 10 * time.Second
openTSDBTestTimeout = 5 * time.Second
graphiteTestTimeout = 5 * time.Second
)
type writeFn func(t *testing.T, node *TestNode, database, retention string)