From 82207ffce5ccbdbd54fdf0d39ca67446fad1bbfb Mon Sep 17 00:00:00 2001 From: Stephane Nicoll Date: Mon, 11 Apr 2016 15:17:58 +0200 Subject: [PATCH] Attempt to fix Windows build The couchbase instance in our windows infra seems super slow. Trying to workaround that issue by increasing the connect timeout from 5 to 10 sec. See gh-5651 --- .../src/main/resources/application.properties | 1 + 1 file changed, 1 insertion(+) diff --git a/spring-boot-samples/spring-boot-sample-data-couchbase/src/main/resources/application.properties b/spring-boot-samples/spring-boot-sample-data-couchbase/src/main/resources/application.properties index ecc5de68fc8..d27b4120e25 100644 --- a/spring-boot-samples/spring-boot-sample-data-couchbase/src/main/resources/application.properties +++ b/spring-boot-samples/spring-boot-sample-data-couchbase/src/main/resources/application.properties @@ -1,3 +1,4 @@ spring.couchbase.bootstrap-hosts=localhost +spring.couchbase.env.timeouts.connect=10000 spring.data.couchbase.auto-index=true