From 98668bd59223ebf7693287d45ecef471e8e0caa2 Mon Sep 17 00:00:00 2001 From: Mark Haines Date: Fri, 3 Mar 2017 17:08:30 +0000 Subject: [PATCH] Increase the timeout, travis seems to be a bit slow --- .../dendrite/roomserver/roomserver-integration-tests/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/github.com/matrix-org/dendrite/roomserver/roomserver-integration-tests/main.go b/src/github.com/matrix-org/dendrite/roomserver/roomserver-integration-tests/main.go index e617ce1f4..d4a5c97d9 100644 --- a/src/github.com/matrix-org/dendrite/roomserver/roomserver-integration-tests/main.go +++ b/src/github.com/matrix-org/dendrite/roomserver/roomserver-integration-tests/main.go @@ -21,7 +21,7 @@ var ( // The address the roomserver should listen on. roomserverAddr = defaulting(os.Getenv("ROOMSERVER_URI"), "localhost:9876") // How long to wait for the roomserver to write the expected output messages. - timeoutString = defaulting(os.Getenv("TIMEOUT"), "10s") + timeoutString = defaulting(os.Getenv("TIMEOUT"), "60s") // The name of maintenance database to connect to in order to create the test database. postgresDatabase = defaulting(os.Getenv("POSTGRES_DATABASE"), "postgres") // The name of the test database to create.