From 80b720507fea898c261bbf3e3b5f895df08a9afa Mon Sep 17 00:00:00 2001 From: Jocelyn Liu Date: Thu, 16 Jul 2020 13:38:02 -0700 Subject: [PATCH] Set polling interval to 60s and sessions commit delay to 30s --- command/command.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/command/command.go b/command/command.go index 2435637d..b8496fb3 100644 --- a/command/command.go +++ b/command/command.go @@ -19,8 +19,8 @@ var ( const ( storeBirthday string = "1" maxCommitBatchSize int32 = 90 - sessionsCommitDelaySeconds int32 = 11 - setSyncPollInterval int32 = 30 + sessionsCommitDelaySeconds int32 = 30 + setSyncPollInterval int32 = 60 nigoriTypeID int32 = 47745 )