Skip to content

Commit

Permalink
Merge pull request #979 from tmiddlet2666/coherence-storage
Browse files Browse the repository at this point in the history
Fix incorrect default timeout value for Coherence storage driver
  • Loading branch information
ReneWerner87 authored Sep 7, 2023
2 parents 629c252 + 033c8f4 commit 0e55883
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion coherence/coherence.go
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit 0e55883

Please sign in to comment.