Fix incorrect default timeout value for Coherence storage driver

This commit is contained in:
Tim Middleton
2023-09-07 15:22:55 +08:00
parent 1e3b3f6a5e
commit dc9bb23ade

View File

@@ -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.