From 57ee9676c29888348147c22491472d3d91bbdedd Mon Sep 17 00:00:00 2001 From: Asias He Date: Fri, 11 Dec 2015 13:25:18 +0800 Subject: [PATCH] storage_service: Fix default ring_delay time It is 30 seconds instead of 5 seconds by default. To align with c*. Pleas note, after this a node will takes at least 30 seconds to complete a bootstrap. --- service/storage_service.hh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/service/storage_service.hh b/service/storage_service.hh index 57dd8b8a59..10a7fe971b 100644 --- a/service/storage_service.hh +++ b/service/storage_service.hh @@ -163,7 +163,7 @@ private: } else #endif - return 5 * 1000; + return 30 * 1000; } /* This abstraction maintains the token/endpoint metadata information */ token_metadata _token_metadata;