From dc9bb23ade7943efc647ea10b2c03d808d323c8c Mon Sep 17 00:00:00 2001 From: Tim Middleton Date: Thu, 7 Sep 2023 15:22:55 +0800 Subject: [PATCH] Fix incorrect default timeout value for Coherence storage driver --- coherence/coherence.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/coherence/coherence.go b/coherence/coherence.go index bf1141e5..d4b47d59 100644 --- a/coherence/coherence.go +++ b/coherence/coherence.go @@ -12,7 +12,7 @@ import ( const ( defaultScopeName = "default-store" - defaultTimeout = time.Duration(30) * time.Millisecond + defaultTimeout = time.Duration(30) * time.Second ) // Storage represents an implementation of Coherence storage provider.