set default timeout to 10 secs

This commit is contained in:
Dmitriy Ryajov 2019-10-03 16:36:06 -06:00
parent b281f46ee5
commit 2066e81658
1 changed files with 1 additions and 1 deletions

View File

@ -13,7 +13,7 @@ import chronos, chronicles
logScope:
topic = "TimedCache"
const Timeout* = 5 * 1000 # default timeout in ms
const Timeout* = 10 * 1000 # default timeout in ms
type
ExpireHandler*[V] = proc(val: V) {.gcsafe.}