Merge pull request #979 from tmiddlet2666/coherence-storage

Fix incorrect default timeout value for Coherence storage driver
This commit is contained in:
RW
2023-09-07 10:11:33 +02:00
committed by GitHub

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.