From: Gunnar Beutner Date: Mon, 28 Jan 2013 12:38:18 +0000 (+0100) Subject: Schedule pending services using the retry interval. X-Git-Tag: v0.0.2~635 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=c563736588a18a04eed3c991b838dd9ed1b3bae6;p=icinga2 Schedule pending services using the retry interval. --- diff --git a/lib/icinga/service.cpp b/lib/icinga/service.cpp index c3cd18cf5..56c4d0e9f 100644 --- a/lib/icinga/service.cpp +++ b/lib/icinga/service.cpp @@ -338,7 +338,7 @@ ServiceStateType Service::GetStateType(void) const Value value = Get("state_type"); if (value.IsEmpty()) - return StateTypeHard; + return StateTypeSoft; int ivalue = static_cast(value); return static_cast(ivalue);