From: hickert Date: Wed, 24 Jun 2009 14:04:55 +0000 (+0000) Subject: Made support daemon timeout configurable. X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=65e3bd702a48a6c568b11c223701e34cd031c66a;p=gosa.git Made support daemon timeout configurable. git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@13787 594d385d-05f5-0310-b6e9-bd551577e9d8 --- diff --git a/gosa-core/include/class_gosaSupportDaemon.inc b/gosa-core/include/class_gosaSupportDaemon.inc index 33e841885..05817d193 100644 --- a/gosa-core/include/class_gosaSupportDaemon.inc +++ b/gosa-core/include/class_gosaSupportDaemon.inc @@ -52,11 +52,16 @@ class gosaSupportDaemon @param boolean Connect Directly connect to daemon socket. @param float Timeout The timelimit for all socket actions. */ - public function __construct($connect=TRUE,$timeout=15) + public function __construct($connect=TRUE,$timeout=null) { #FIXME: bad idea about referencing global variables from within classes global $config; + // Detect timeout + if($timeout == null){ + $timeout = $config->get_cfg_value("gosaSupportTimeout",15); + } + /* This should only be the case if we call this from setup. __autoload() */