From 93b9bcbaa2ea9d23efee35f608b9adbfe4b20575 Mon Sep 17 00:00:00 2001 From: Karchnu Date: Mon, 14 Dec 2020 16:08:26 +0100 Subject: [PATCH] Context: default value for timer is now 30 seconds. --- src/ipc/context.cr | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/ipc/context.cr b/src/ipc/context.cr index 4f0c032..907a3fe 100644 --- a/src/ipc/context.cr +++ b/src/ipc/context.cr @@ -1,7 +1,8 @@ class IPC::Context - property base_timer : Int32 = LibIPC::INFTIM - property timer : Int32 = LibIPC::INFTIM + # TODO: FIXME: base timer default is 30 seconds, INFTIM was causing trouble. + property base_timer : Int32 = 30_000 # LibIPC::INFTIM + property timer : Int32 = 30_000 # LibIPC::INFTIM getter context : LibIPC::Ctx # On message reception, the message is contained into the event structure.